Forum Replies Created
-
AuthorPosts
-
Mahesh
Member@techfinderr: Glad to know its working fine now. Some module of Jetpack plugin must have caused the issue.
Regards,
MaheshMahesh
Member@sungju98: You cannot put the image here directly, but you can share the screenshot via dropbox etc.
Yes, you can use Comet Cache if that plugin provides the service you want.Regards,
MaheshMahesh
Member@techfinderr: Please try changing the theme to WordPress’s default themes and check whether the problem persists or not. If the problem occurs with other themes too, then this is not a theme issue.
Let me know further.Regards,
MaheshMahesh
Member@sungju98: I don’t think this is a theme issue. Have you tried to install it using other theme (WordPress default theme), please try with other theme and check. If the problem persists, it may be due to WordPress installation. Try with a fresh install.
Regards,
MaheshMahesh
Member@melirod: Please post in your site url. And please clarify more, do you mean to remove all the featured content columns except Headline and subheadline?
Regards,
MaheshMahesh
Member@vetsimulators: In your custom CSS you have an error because of an extra opening curly brace ({) please remove it. Remove the following line from your Custom CSS box:
{ #hgroup-wrap { display: none; }
Then add the following:#hgroup-wrap, #header-top { display: none; }Regards,
MaheshMahesh
Member@mupa: For that, use the following CSS:
@media screen and (max-width: 480px) { body:not(.home) #content .sidebar-primary { display: none; } }Regards,
MaheshMahesh
Member@sungju98: I tried the plugin W3 Total Cache with Full Frame Pro and it is working fine in our server. Its up to you for which plugin to use. You can search for the Plugin for caching in WordPress.org’s plugins repository (https://wordpress.org/plugins/). Most people are using W3 Total Cache. Comet Cache may work fine too as far as it provides the service you required.
Regards,
MaheshMahesh
Member@coachcathy: Thank you for using Catch Responsive Pro.
1. For Menu:
Go to Dashboard=> Appearance=> Customize=> Menus=> Menu Location and select your desired menu from the dropdown in Primary Menu and click Save. If you don’t have any options listed, go to Dashboard=> Appearance=> Menu and create a menu and select the items you want to display in the menu. And then select the very menu as the primary menu.
2. Featured Content headline issue:
Seems you are using the demo content. While using demo content, Featured Content Headline and Sub Headline won’t change even if you update the text in the customizer option. For that use any one of the option in the list except Demo Featured Content
Hope this helps, let me know if any problem.Regards,
MaheshMay 5, 2016 at 9:57 am in reply to: whether the second image on the Home page can be removed? #91064Mahesh
Member@nels-chellen: By second image, do you mean the Header Image? If so, yes, this can be removed. Go to Dashboard=> Appearance=> Customize=> Header Image and click Hide image button.
Let me know if any problem.Regards,
MaheshMahesh
Member@mupa: I checked your site in both browser’s mobile mode and in mobile’s browser but found no issue that you’ve mentioned above. I opened you website, visited couple of pages there through mobile menu and then clicked back button, the pages are loading fine and the menu remains closed whether I go forward or backward unless I pressed the three bar mobile menu button.
Regards,
MaheshMahesh
Member@nagesh-seogmail-com: Overriding above function will fix the issue, no need to edit other files. In the above code, replace the following code
<?php if ( '' != ( $catchresponsive_social_icons = catchresponsive_get_social_icons() ) ) { ?> <section class="widget widget_catchresponsive_social_icons" id="header-right-social-icons"> <div class="widget-wrap"> <?php echo $catchresponsive_social_icons; ?> </div><!-- .widget-wrap --> </section><!-- #header-right-social-icons --> <?php } ?>with the following:
<?php echo do_shortcode(‘[GTranslate]’); ?>
However, you may need to change some CSS if some design issue occur.
Hope this helps, let me know if any problem.Regards,
MaheshMahesh
Member@kat42: You’ll need to override
clean_box_primary_menufunction. The function is in clean-box/inc/clean-box-menus.php file. You’ll find header-toggle and header-toggle-sidebar div in the function, and it is what you’ll need to replace with your widget.
Hope this helps.Regards,
MaheshMahesh
Member@derfabi2016: Use the following CSS:
#content .post-231.page .entry-header { display: none; }Regards,
MaheshMahesh
Member@mupa: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS and add the following CSS:
@media screen and (max-width: 480px) { #feature-slider { display: none; } }Regards,
MaheshMahesh
Member@lordinvestor: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
#header-menu ul.menu { display: block; } #header-menu .wrapper { padding: 0; } .tinynav { display: none; } @media screen and (max-width: 767px) { #header-menu ul.menu { display: none; } .tinynav { display: block; } #header-menu .wrapper { padding: 14px 0; } }Let me know if any problem.
Regards,
MaheshMahesh
Member@lbc: Thank you for using Adventurous theme.
I checked your site and the issue is because of the Custom CSS you are using. Below is the Custom CSS you are using and I’ve commented out the code that is causing the problem please check.#masthead #site-logo img { max-height: 80px; /* Your desired height for normal header logo */ } #masthead.fixed-header #site-logo img { max-height: 45px; /* Your desired height for fixed header logo */ } /*.container { width: 98%; padding: 0 10px; }*/ #featured-heading{ width: 100%; } /*#featured-post.layout-four .featued-content-wrap, #featured-post.layout-three .featued-content-wrap { width: 100%; } #featured-post.layout-four .post, #featured-post.layout-three .post { width: 23%; }*/ @media screen and (min-width: 981px) { #primary { width: 80%; } #secondary { width: 30%; } #secondary .widget { width: auto; } #featured-post .featued-content-wrap { margin: 0 auto; } #homepage-message .left-section { width: auto; } } @media screen and (max-width: 980px) and (min-width: 678px) { #primary { width: 100%; } #secondary { width: 100%; } #secondary .widget { margin-left: 20px; width: 40%; } /*#featured-post.layout-four .featued-content-wrap, #featured-post.layout-three .featued-content-wrap { margin: 0 auto; } #featured-post.layout-four .post:nth-child(2n+1), #featured-post.layout-three .post:nth-child(2n+1), #secondary .widget:nth-child(2n+1) { clear: none; } #featured-post.layout-four .post:nth-child(4n+1), #featured-post.layout-three .post:nth-child(3n+1){ clear: none; } #featured-post.layout-four .post, #featured-post.layout-three .post { width: 21%; }*/ } /*@media screen and (max-width: 767px) { .container { width: 96%; } #featured-post.layout-four .post:nth-child(2n+1), #featured-post.layout-three .post:nth-child(2n+1), #secondary .widget:nth-child(2n+1) { clear: both; } #featured-post.layout-four .post:nth-child(4n+1), #featured-post.layout-three .post:nth-child(3n+1) { clear: both; } #featured-post.layout-four .post, #featured-post.layout-three .post { width: 46%; } }*/ @media screen and (max-width: 700px) { #secondary { margin: 0; width: 100%; } #secondary .widget { margin-left: 0; padding: 10px 4%; width: 91%; } } /*@media screen and (max-width: 560px) { #featured-post.layout-four .post, #featured-post.layout-three .post { width: 100%; } #featured-post.layout-four .post img.wp-post-image, #featured-post.layout-three .post img.wp-post-image { display: inline-block; } }*/ #powered { display: none; }Note: You can either copy the above CSS or remove the commented out codes and use the remaining.
Regards,
MaheshMahesh
Member@briswatek: Yes, may be images in the slider could have caused the problem. Images increase size of website and the increased size results in more loading time, due to which the above issue could occur. Try reducing number of images and check again to see if it resolves the problem.
Regards,
MaheshMahesh
Member@stephanklein: Glad to know it helped you resolve the issue. Have a nice day.
Regards,
MaheshMahesh
Member@leops: There has been a little bug in the theme. This will be fixed in the next theme update which will be released soon. Thank you for letting us find the issue. Thank you for your patience.
Regards,
Mahesh -
AuthorPosts
