Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Aleao: We don’t have that option and it should be done by using plugin. So, W3 Total Cache plugin can be used to combine CSS and JS to reduce the server request.
Maybe you can see this https://yoast.com/reduce-http-requests-wordpress/Sakin
Keymaster@Aleao: Sorry I don’t get it what you mean. Do you mean CSS minify and combine then you can try W3 Total Cache plugin.
December 11, 2014 at 1:05 am in reply to: Whitespace between featured post slider and homepage headline #48724Sakin
Keymaster@Stanley: That all white spaces are coming from your page “Home”, you can edit that page and remove all empty
<p></p>tags. To find those, you need to check in text mode in your page. See this screenshot which show where is text mode http://www.pinterest.com/pin/548594798332210926/Sakin
Keymaster@P: yes I didn’t know that qTranslate has problem with the latest version of WordPress. If you are using qtranslate then you can check this https://wordpress.org/support/topic/qtranslate-compatibility-with-wordpress-401, there is Patch.
Sakin
Keymaster@Parent: Looks like qTranslate plugin has stopped supporting for latest version of WordPress. See this https://wordpress.org/support/topic/qtranslate-compatibility-with-wordpress-401
Sakin
Keymaster@Erin: Can you send me your site URL and more about the error. I will also email you personally so that you can send me detail information.
The installation process is quite simple.
1. You need to login to your WordPress Dashboard.
2. Go to “Appearance => Themes”
3. Then clock on “Add New” and then click on “Upload Theme”
4. Then click on Browse and select catch-kathmandu-pro.zip file that you have downloaded
5. Then click on “Install Now” and then activate it.You can also check this screencast http://devotepress.com/wordpress-writing-editing/upgrade-premium-version-wordpress-themes-eg-adventurous-pro/, just skip to 4:30 minutes and you will how to install it.
Sakin
Keymaster@balos: That is WordPress default Category Widget and we don’t have any control on it. It is showing the Category Description. IF you remove description from your Category then it will not show that.
Sakin
Keymaster@Cecilia Linda: That lightbox is from WooCommerce and we don’t have any control on it.
Sakin
Keymaster@dalozano17: Catch Evolution Free version only have option to user Featured Post Slider, which is created to highlight you post image as the slider image.
If you check out the theme instruction in http://catchthemes.com/theme-instructions/catch-evolution/. It’s clearly mentioned.
1. First you need to create post and then add featured image in your post ( http://catchthemes.com/blog/videos-blog/video-series-adding-featured-image-wordpress-postpage/ )
2. Go to “Appearance => Theme Options => Featured Post Slider” in your WordPress Dashboard
3. To add Posts in the slider, click on “Featured Post Slider Options” and simply insert the ID numbers for posts in the boxes, one post ID number in each box
4. Click on Save buttonSee this screenshot http://www.pinterest.com/pin/548594798329984427/
Sakin
Keymaster@P: Ok I see that you are using mqtranslate plugin and not qtranslate plugin, that is why you have issue. We haven’t added support for mqtranslate plugin.
For now, you can build child theme and the copy the functions from
catchbox-qtranslate.phpand add that in your child theme functions.php file. For child theme you can look at http://catchthemes.com/blog/create-child-theme-wordpress/We will try to add mqtranslate plugin support in future version update.
Sakin
Keymaster@P: What’s your site URL? Do you have any Cache plugin installed.
Sakin
Keymaster@Cecilia Linda: Sorry I don’t understand it your question. If you are talking about the width in this page celinda-design.de/?product=maple-seed , then it’s controlled from your css in your child theme. You can remove that and it will work full width:
.woocommerce #primary { width: 570px; } @media screen and (min-width: 1190px) { .woocommerce #primary { width: 690px; } } @media screen and (max-width: 1060px) { .woocommerce #primary { width: 500px; } } @media screen and (max-width: 960px) { .woocommerce #primary { width: 100%; } }Sorry I don’t understand it .
Sakin
Keymaster@Cecilia Linda: First you shouldn’t edit any core theme files. If you want to edit any core theme files then you need to build child theme and edit in your child theme http://catchthemes.com/blog/create-child-theme-wordpress/.
We will not have control of your admin section and your edits. So, now what you can do is. Delete the files from your FTP and load the original theme files.
Sakin
Keymaster@balos: Sorry I don’t get it what you mean. Can you explain in reference with your site URL so that I can check in and give you the solution.
Sakin
Keymaster@Kim: In this theme Previous and Next will be at the top of the post. But you have hidden it by adding the following css. You can remove that and it will load at the top of your post.
.single #nav-single { display: none; }To move this at the bottom, you need to build child theme. See this http://catchthemes.com/blog/create-child-theme-wordpress/ and then copy
single.phpfile in your child theme and then move the code<nav id="nav-single"> <h3 class="assistive-text"><?php _e( 'Post navigation', 'catchbox' ); ?></h3> <span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'catchbox' ) ); ?></span> <span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', 'catchbox' ) ); ?></span> </nav><!-- #nav-single -->Below:
<?php get_template_part( 'content', 'single' ); ?>Sakin
Keymaster@Kim: You have activated Jetpack plugin “Infinite Scroll” module. You can go to Jetpack setting and deactivate that and it will come back to older posts.
December 8, 2014 at 11:38 pm in reply to: Whitespace between featured post slider and homepage headline #48646Sakin
Keymaster@Stanley: I think you are checking with the older version of Internet Explorer. As I just check in with Internet Explorer 11 and it works perfectly same.
Sakin
Keymaster@Matt: I see that you have edited the core theme style.css file. You shouldn’t edit that. You shouldn’t edit/add any files inside ‘adventurous-pro’ directory. As all the files will be overwritten when you update the theme.
Also I see the issue with the css that you have changes in style.css file. Go to style.css and remove the height in the following css:
#footer-sidebar { background-color: #004b99; height: 125px; } #site-generator { background-color: #004b99; height: 50px; }It should be simple as:
#footer-sidebar { background-color: #004b99; } #site-generator { background-color: #004b99; }Note: Please reset all the style.css with the original file and add all your edit css in “Appearance => Theme Options => Custom CSS” box or build child theme and add it in your child theme style.css http://catchthemes.com/blog/create-child-theme-wordpress/
Sakin
Keymaster
@Matt: For square list and decimal for ul, ol in widgets, you can add the following css in “Appearance => Theme Options => Custom CSS” box:.widget ul { list-style: square outside; } .widget ol { list-style: decimal outside; } .widget ul li, .widget ol li { margin-left: 20px }But I don’t understand your second question. Where are you trying to alight your header right menu. What do you mean? Sorry please explain bit more or maybe share screenshot of what you mean.
December 7, 2014 at 12:39 pm in reply to: Whitespace between featured post slider and homepage headline #48590Sakin
Keymaster@Stanley: For homepage message issue, can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box:
#homepage-message { border: none; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; display: inline-block; width: 100%; }For border that you show in screenshot in homepage, you can add the following css:
.home .site-content article { border-bottom: none; } -
AuthorPosts
