Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@ashrafashraf: After you create child theme, all the core theme files edits has to be done through child theme.
Sakin
Keymaster@Joaozinho: You have to build child theme. See this http://codex.wordpress.org/Child_Themes and http://www.webdesignerdepot.com/2011/12/creating-your-first-wordpress-child-theme/
Sakin
Keymaster@ashrafashraf: I don’t get it what you mean. Can you send me the screenshot of what you are asking for.
Sakin
Keymaster@ashrafashraf: That’s inside the table so I cannot break in or float it.
Sakin
Keymaster@karenstl: 20 color options means, you can customize the 20 individual elements of the theme. You can pick any color or those elements.
Sakin
Keymaster@ashrafashraf: That is the issue of your table not the theme.
Sakin
Keymaster@karenstl: If you are happy with the Free version of Catch Everest then it’s fine. Yes, you can get the list of additional features though theme instructions page at http://catchthemes.com/theme-instructions/catch-everest-pro/
Sakin
Keymaster@karenstl: You can hide it form “Appearance => Theme Options => Header Right Section”. Then click on “Disable Header Right Section” and save it.
Sakin
Keymaster@ashrafashraf: Can you be more specific or share screenshot what is not working fine.
Sakin
Keymaster@Fl0W: I just check in your account with sales and see that you have cancelled the theme. Please don’t click on cancel from next time. I have just created new order. Now you should be able to login and download the theme.
Sakin
Keymaster@dbevarly: when you change the theme, you don’t need to copy and paste the content. Your content will be in stored in database so it will not be depended on Theme.
You can simple change the theme to Catch Box Free Theme and then use the plugin “Regenerate Thumbnails” plugin to regenerate your old image to new size of Catch Box theme. Then you can set Header, background and all changes from “Appearance => Theme Options” panel.
Once you set it in Free version, you can simple activate Catch Box Pro version. Which is just a featured addition to Catch Box Free Version. So, it will all go smooth. You just need to set you menu and header, that is also though just a click in settings.
Sakin
Keymaster@crusehh: I don’t get it what you mean. You can remove the header image form “Appearance => Header”.
If you are not talking about this then can you send me your Site URL and the screenshot of what you want to do it.
Sakin
Keymaster@karenstl: There is Pinterest icon in Catch Everest Theme. Just add your Pinterest URL from “Appearance => Theme Options => Social Links”.
Sakin
Keymaster@karenstl: For remove it, you need to upgrade to Catch Everest Pro version. But in free version you can hide it by add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.single .featured-image { display: none; }Sakin
Keymaster@spiritexpressing: Multiple H1 is allowed in HTML5 and we have carefully designed H1 tags with special attention on header tag and headings.
You can also check this Video http://www.youtube.com/watch?v=GIn5qJKU8VM by Google software engineer Matt Cutts, who clearly states that you can use multiple H1 but don’t over do it. Also use h1 specific to heading and header tags.
You can also check this article URL http://html5doctor.com/html5-seo-search-engine-optimisation/
Sakin
Keymaster@crusehh: WordPress 3.6 uses jQuery version 1.10.2. See this in your site http://mmghealth.com/wp-includes/js/jquery/jquery.js?ver=1.10.2
So, this is not a theme or plugin issue. Either you need to change your map to Google Map or you need to add new version of jQuery through Google CDN. For that you need to build child theme and add the following Code in your child theme functions.php
function catchchild_jquery_enqueue() { if ( !is_admin() ) { wp_deregister_script( 'jquery' ); wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js', false, '2.0.3' ); wp_register_script( 'jquery', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js", false, null); wp_enqueue_script( 'jquery' ); } } add_action( 'wp_enqueue_scripts', 'catchchild_jquery_enqueue' );For more please take help from WordPress Support Forum as this is not a theme or plugin issue.
Sakin
Keymaster@Nixos: For menu, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#header-menu ul.menu { text-align: left; } #header-menu ul.menu a { padding: 0 15px; }For SEO stuff. I see that you have remove the Site Title from “Settings => General”. That is why it is empty after |. It is recommended add title. Also for SEO stuff, I recommend you to use WordPress SEO by Yoast plugin and do the setting. From that plugin you can change the Title as well as description.
-
AuthorPosts
