Forum Replies Created
-
in reply to: Must click twice to Search
Hello,
You can unregister the script and register the new one in your child theme.
Or you can add the function a t custom js box at theme options and overwrite the search function.Best regards!
in reply to: while template activation parse error is comingHello,
Please make sure you have installed the theme correctly. Replace the themes files, maybe one of them is missing. Also disable any third party plugin, in case they may conflict.
If the issue persists please can you show us your site credentials in a private reply, so we can give it a closer look?
Best regards!
in reply to: Import / Export Data ProblemHello,
Have you tried the import without iamges?
I can give it a look if you can provide us your WP and FTP credentials (in a private reply).
Best regards!
in reply to: template not getting activatedHello,
Please can you show us your site crednetilas and ftp credentials if possible (in a private reply)?
Are you using the latest theme version? What third party plugin do you have installed?
Let us know.
Regards!
in reply to: Logo and Product Column IssuesHello,
You can find the response here https://support.codeless.co/forums/topic/responsive-issues-header-menu-search/#post-17123
Regards!
in reply to: Responsive Issues: Header, Menu, SearchHello,
1. Please try this code instead:
@media (max-width: 1100px) and (min-width: 981px){ .header_11 #logo { margin-left: 15px;//adjust the size here margin-right: 15px; } }2. I checked it but can’t found the issue you are having.
3. Use this css code:
@media (max-width: 480px){
.mobile_small_menu {
margin-left: -30px;
}
}4. Please can you show me your site credentials? I will help you show the search on responsive menu, if you enable the search in header.
Best regards!
in reply to: Back to Top buttonHello,
1/2. I fixed it. Please delete the code you have added:
.scrollup {
z-index: 9999;
display: block !important;
}3/4.
Please add this css code:
@media (max-width: 480px){ #logo { margin-right: 25px;} }How do you want to scrollup button on responsive?
Best regards!
in reply to: Onepage Menu linksHello,
I fixed it. Please check it now.
Regards!
in reply to: Onepage Menu linksThis reply has been marked as private.in reply to: Column title on megamenuHello,
Sorry this isn’t possible.
Regards!
in reply to: Read More Button Post Grid SettingsHello,
The button on post grid has the default styles of visual composer. You can use button element to have the theme’s styles.
Can you show us your site url?
Where are you changing the button styles?
Best regards!
in reply to: Social Media IconsHello,
You must add Specular Social Widget at top right/left header widget area.
Best regards!
Hello,
Please make sure you have the latest theme version and the latest visual composer version.
I need to see your site to understand what’s wrong.
best regards!
in reply to: Sticky NavHello,
We have responded you by email.
I don’t see the changes applied. Please replace the code I gave you and add the custom css code. It should work.Regards!
in reply to: Tower WP – BreadcrumbHello,
Please edit teh file ‘tower/includes/view/page_header.php’
Find the lines:
<?php for($i = count($page_parents) - 1; $i >= 0; $i-- ){ ?> <li><a href="<?php echo esc_url(get_permalink($page_parents[$i])) ?>"><?php echo esc_html(get_the_title($page_parents[$i])) ?> </a></li> <?php } ?> <li class="active"><a href="<?php echo esc_url(get_permalink()) ?>"><?php echo esc_html($title) ?></a></li>and replace them with:
<?php for($i = count($page_parents) - 1; $i >= 0; $i-- ){ ?> <li><a href="<?php echo esc_url(get_permalink($page_parents[$i])) ?>"><?php echo esc_html(get_the_title($page_parents[$i])) ?> </a></li> <?php } ?> <?php if(get_post_type($id) == 'portfolio'){ $category_detail= get_the_terms($id, 'portfolio_entries');//$post->ID foreach($category_detail as $cd){?> <li ><a href="<?php echo esc_url(get_permalink()) ?>"><?php echo $cd->name; ?></a></li> <?php } }?> <li class="active"><a href="<?php echo esc_url(get_permalink()) ?>"><?php echo esc_html($title) ?></a></li>This will be displayed: Home / Category name / Portfolio item title. It’s not possible to show the breadcrumbs as you want, because the portfolio item depends on it’s category.
Best regards!