Hello,
Sorry, but you have to use FTP. To keep changes safe you need make changes in child theme. We can do this for you. Please provide FTP credentials and we’ll help you.
Best regards,
Jack Richardson.
Hello,
Sorry, but you have to use FTP. To keep changes safe you need make changes in child theme. We can do this for you. Please provide FTP credentials and we’ll help you.
Best regards,
Jack Richardson.
Hello,
Please clarify with more details how exactly you want to change the cart in top bar.
Best regards,
Jack Richardson.
Hello,
Please provide FTP and WP admin credentials in private content.
We’ll check the issue with captcha.
Thank you.
Best regards,
Jack Richardson.
Hello,
Please use this code in Global Custom CSS section:
.etheme_add_to_cart_button.product_type_simple {
background-color: red;
}
Best regards,
Jack Richardson.
Hello,
You’re welcome.
Best regards,
Jack Richardson.
Hello,
Please provide site url and WP admin credentials in private content.
Best regards,
Jack Richardson.
Hello @tommytai,
If you mean 2 categories in the content (not in the sidebar) then use this code in Global Custom CSS:
.categories-mask h4 {
font-size: 20px;
font-family: sans-serif;
}
Write values you need.
Best regards,
Jack Richardson.
Hello,
Try to use this code in Theme Options > Custom CSS > Global Custom CSS:
.menu > li > a {
color: #000 !important;
}
Best regards,
Jack Richardson.
Hello,
We’ve made minor changes in your code for share shortcode in child functions.php to fix the issue with 404 page. Please check it now.
Best regards,
Jack Richardson.
Hello,
You’re welcome.
Best regards,
Jack Richardson.
Hello,
Please provide WP Dashboard credentials to check the issue.
Best regards,
Jack Richardson.
Hello,
We’ll forward this issue to our developers and they will fix it in the theme update.
Please take our apologies.
Best regards,
Jack Richardson.
Hello,
Try to use this code instead of the current one:
function et_get_main_menu($menu_id = 'main-menu') {
$custom_menu_slug = 'custom_nav';
$cache_slug = 'et_get_' . $menu_id;
if($menu_id == 'main-menu-right') $custom_menu_slug = 'custom_nav_right';
$custom_menu = etheme_get_custom_field( $custom_menu_slug );
$one_page_menu = '';
if(etheme_get_custom_field('one_page')) $one_page_menu = ' one-page-menu';
if(!empty($custom_menu) && $custom_menu != '') {
$output = false;
if ( !$output ) {
ob_start();
wp_nav_menu(array(
'menu' => $custom_menu,
'before' => '',
'container_class' => 'menu-main-container'.$one_page_menu,
'after' => '',
'link_before' => '',
'link_after' => '',
'depth' => 4,
'fallback_cb' => false,
'walker' => new Et_Navigation
));
$output = ob_get_contents();
ob_end_clean();
}
echo $output;
return;
}
if ( has_nav_menu( $menu_id ) ) {
$output = false;
if ( !$output ) {
ob_start();
wp_nav_menu(array(
'theme_location' => $menu_id,
'before' => '',
'container_class' => 'menu-main-container',
'after' => '',
'link_before' => '',
'link_after' => '',
'depth' => 4,
'fallback_cb' => false,
'walker' => new Et_Navigation
));
$output = ob_get_contents();
ob_end_clean();
}
echo $output;
} else {
?>
<br>
<h4 class="a-center">Set your main menu in <em>Appearance > Menus</em></h4>
<?php
}
}
function et_get_mobile_menu($menu_id = 'mobile-menu') {
$custom_menu = etheme_get_custom_field('custom_nav_mobile');
$one_page_menu = '';
if(etheme_get_custom_field('one_page')) $one_page_menu = ' one-page-menu';
if(!empty($custom_menu) && $custom_menu != '') {
$output = false;
if ( !$output ) {
ob_start();
wp_nav_menu(array(
'menu' => $custom_menu,
'before' => '',
'container_class' => 'menu-mobile-container'.$one_page_menu,
'after' => '',
'link_before' => '',
'link_after' => '',
'depth' => 4,
'fallback_cb' => false,
'walker' => new Et_Navigation_Mobile
));
$output = ob_get_contents();
ob_end_clean();
}
echo $output;
return;
}
if ( has_nav_menu( $menu_id ) ) {
$output = false;
if ( !$output ) {
ob_start();
wp_nav_menu(array(
'container_class' => $one_page_menu,
'theme_location' => 'mobile-menu',
'walker' => new Et_Navigation_Mobile
));
$output = ob_get_contents();
ob_end_clean();
}
echo $output;
} else {
?>
<br>
<h4 class="a-center">Set your main menu in <em>Appearance > Menus</em></h4>
<?php
}
}
Best regards,
Jack Richardson.
Hello,
Connect to your server via FTP (use FileZilla client https://filezilla-project.org/download.php?type=client ) and go to the directory wp-content/themes/legenda/framework. There you’ll find the file theme-functions.php.
Best regards,
Jack Richardson.
Hello,
Please read this article https://docs.woothemes.com/document/editing-product-data-tabs/ how to rename the tabs. Name them according to your language.
Best regards,
Jack Richardson.
Hello,
Please follow the solutions from these articles:
http://stackoverflow.com/questions/14412099/what-is-a-scaled-image-and-how-do-i-serve-one-in-a-webpage
http://premium.wpmudev.org/blog/10-best-image-optimization-plugins-to-speed-up-your-wordpress-site/
http://www.elegantthemes.com/blog/tips-tricks/optimize-images-for-your-wordpress-website
Best regards,
Jack Richardson.
Hello,
You need edit the file legenda/framework/theme-functions.php, remove the code
if(function_exists( 'set_revslider_as_theme' )){
set_revslider_as_theme();
}
in line 917.
And you’ll be able to register the plugin.
Best regards,
Jack Richardson.
Hello,
Yes, the pages where you used parallax background have to be recreated. This is required because Visual Composer was updated and their settings were changed. So recreate only the pages where parallax background is used.
Best regards,
Jack Richardson.
Hello,
We’ll pass this issue to our developers and they will fix it in the theme update.
Please take our apologies for inconveniences.
Best regards,
Jack Richardson.
Hello,
Do you mean you want to remove breadcrumbs on all pages?
Best regards,
Jack Richardson.
Hello,
Yes, you can add this code:
<a href="http://www.eleniemmanouilidou.com/"><i class="fa fa-arrow-left" aria-hidden="true"></i>Αρχική Σελίδα</a>
Best regards,
Jack Richardson.
Hello,
Edit this code in custom css:
@media (min-width: 1200px) {.products-grid.product-count-3 .product {
width: 247px !important;
}}
and change the 247 value to 240.
Best regards,
Jack Richardson.
Hello,
You’re using very old theme version. You need update it to 3.0.3 version.
Before update delete “woocommerce” folder in the directory wp-content/themes/legenda/ and it’ll be reuploaded from a new theme package.
Also update all required plugins https://www.8theme.com/download-plugins/ .
You will need to recreate some pages after theme update.
Also make sure you removed the folder “js_composer” in wp-content/themes/legenda directory.
Don’t forget to create back up of your files and database before starting update process!
Best regards,
Jack Richardson.
Hello,
Your query requires additional customization which is beyond our basic support scope. You can order customization service via this link https://www.8theme.com/customization-services/ .
Best regards,
Jack Richardson.
Hello,
What plugin do you mean?
As I see you’ve already found an article where the solution is described.
Best regards,
Jack Richardson.
Hello @paulitov5,
You’re welcome.
Best regards,
Jack Richardson.
Hello,
Try to add whole function code for social icons in child functions.php file. If you have difficulties please provide FTP credentials.
Best regards,
Jack Richardson.
Hello,
There is additional authorization on your site. Please provide credentials for it too.
Best regards,
Jack Richardson.
Hello,
You need disable 3rd-party plugins that you’re using for zoom effect and you’ll get magnifier like in the demo.
Best regards,
Jack Richardson.
Hello,
Thank you for kind words. We appreciate it very much.
Unfortunately we can’t find your screenshot in the post. Please resend it.
Thank you.
Best regards,
Jack Richardson.