about - admin
Forum Replies Created
-
Question status -
-
Support StaffKeymaster
You’re right, meta tag is added but on single page. Add this to your functions.php:
add_filter( "{$prefix}_meta_author", '__return_false' );
after
add_filter( "{$prefix}_site_title", 'site_title_span' );
Regards,
SinisaDecember 13, 2014 at 7:28 pm #4931Support StaffKeymasterHey Ali,
the code is right, but I’ve missed to tell you that code will work only if you put it after this line:
add_filter( "{$prefix}_site_title", 'site_title_span' );
So, it would be like this:
add_filter( "{$prefix}_site_title", 'site_title_span' ); add_filter( "{$prefix}_site_title", 'my_custom_image' ); function my_custom_image( $title ) { $tag = ( is_front_page() ) ? 'h1' : 'div'; $title = get_bloginfo( 'name' ); $site_url = get_option( 'siteurl' ); $img = '<a title="'. esc_attr( $title ) .'" href="'. esc_url( $site_url ) .'"><img src="URL TO YOUR IMAGE" alt="'. esc_attr( $title ) .'" /></a>'; $title = sprintf( '<%1$s id="site-title">%2$s</%1$s>', tag_escape( $tag ), $img ); return $title; }
December 13, 2014 at 7:02 pm #4930Support StaffKeymasterHi Jeremy,
WordPress update is not the cause, however I’ve just tested it with latest WordPress, it’s all fine as I expected. If your site is online, send me login details (mark reply as private), this way it’s hard to point you, and it’s trivial thing probably.
Unfortunately, I can’t let you swap themes, but I’m always here to help you out if you’re stuck. The easiest way is to put site online, and I can quickly act and explain you later what’s happening.
Regards,
SinisaDecember 13, 2014 at 6:55 pm #4929Support StaffKeymasterHi Ali,
author meta tag is added by some plugin, not by theme. I’m guessing it’s SEO plugin. The easiest way to figure it out is to disable one by one plugin, and see if it disappears. Then search through plugin options and disable it.
Best regards,
SinisaDecember 12, 2014 at 4:41 pm #4918Support StaffKeymasterPlease login again and go to your account page: https://www.simplewpthemes.com/account/.
You’ll be able to download files again from “Downloads” tab.Best regards,
SinisaP.S.
You should look into spam folder if you’re not receiving our emails. It might not work if I resend emails, they might end up in spam again 🙂December 12, 2014 at 3:56 pm #4916Support StaffKeymasterI’ve resent you purchase receipt, please re-download theme, it’s updated. Let me know if problem exists, and if it does, please send me your URL, admin username and password (mark reply as private). Let me know!
Regards,
SinisaDecember 8, 2014 at 11:09 am #4868Support StaffKeymasterHi Juan,
theme isn’t suppose to do that, that’s what you need to do. You’re adding your own content to the site, widgets that you want, menus and so on. I see you figured it out by now. If you have any questions, feel free to ask!
We’re here to help.Best regards,
SinisaDecember 5, 2014 at 5:45 pm #4861Support StaffKeymasterHi Ali,
the easiest way is to change the post date, or you can add this to theme setup function (functions.php):
function remove_category( $query ) { if ( $query->is_home ) { $query->set('cat', '-1'); } return $query; } add_filter('pre_get_posts', 'remove_category');
December 5, 2014 at 2:03 pm #4856Support StaffKeymasterHi Nadezda,
just remove this from header.php:
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/cufon-yui.js"></script> <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/Hattori_Hanzo_300.font.js"></script> <script type="text/javascript"> $(document).ready(function() { Cufon.replace('h1',{hover: true})('h2',{hover: true})('h3',{hover: true})('h4',{hover: true})('h5',{hover: true})('h6',{hover: true})('.description',{hover: true})('#top li a',{hover: true}); }); </script>
and then you’ll be able to set custom font in style.css.
Best regards,
SinisaDecember 1, 2014 at 9:26 am #4845Support StaffKeymasterThanks for clarifying. Well, the best thing is to edit image! Make it 445px and problem solved. This is by far the best solution, cause you’ll reduce site loading time.
You can edit image within WordPress. Just go to media library, upload image, click edit and crop it if you don’t have Photoshop. If you do, here’s video tut on how to do it:
Regards,
SinisaNovember 21, 2014 at 10:09 am #4823Support StaffKeymasterHi Iana,
You want this?
https://postimg.org/image/ru9mg51dx/If so, find #slider-wrap in style.css and change margin-bottom: -30px; to margin-bottom: 0px;. That’s it.
Regards,
SinisaNovember 20, 2014 at 8:28 pm #4821Support StaffKeymasterHere’s video tutorial on how to set up slider:
November 19, 2014 at 11:19 am #4819Support StaffKeymasterSetting thread as resolved due to inactivity.
November 18, 2014 at 8:41 am #4813