Forum Replies Created

Viewing 30 posts - 5,851 through 5,880 (of 16,289 total)
  • Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 14, 2016 at 10:04

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 14, 2016 at 07:27

    Hello,

    Please clarify with more details how exactly you want to change the cart in top bar.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 14, 2016 at 06:50

    Hello,

    Please provide FTP and WP admin credentials in private content.
    We’ll check the issue with captcha.

    Thank you.
    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 14, 2016 at 06:48

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 14, 2016 at 06:45

    Hello,

    You’re welcome.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 14, 2016 at 06:42

    Hello,

    Please provide site url and WP admin credentials in private content.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 14, 2016 at 06:40

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 14, 2016 at 06:37

    Hello,

    Try to use this code in Theme Options > Custom CSS > Global Custom CSS:

    .menu > li > a {
      color: #000 !important;
    }

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 11, 2016 at 19:32

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 11, 2016 at 15:52

    Hello,

    You’re welcome.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 11, 2016 at 14:15

    Hello,

    Please provide WP Dashboard credentials to check the issue.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 11, 2016 at 13:50

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 11, 2016 at 13:40

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 11, 2016 at 12:39

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 11, 2016 at 11:21

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 11, 2016 at 10:50
    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 11, 2016 at 10:45

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 11, 2016 at 09:53

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 11, 2016 at 09:17

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 10, 2016 at 17:24

    Hello,

    Do you mean you want to remove breadcrumbs on all pages?

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 10, 2016 at 16:57

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 10, 2016 at 09:14

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 10, 2016 at 09:06

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 9, 2016 at 15:30

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 9, 2016 at 15:27

    Hello,

    What plugin do you mean?
    As I see you’ve already found an article where the solution is described.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 9, 2016 at 09:52

    Hello @paulitov5,

    You’re welcome.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 9, 2016 at 09:27

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 8, 2016 at 20:23

    Hello,

    There is additional authorization on your site. Please provide credentials for it too.

    Best regards,
    Jack Richardson.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 8, 2016 at 19:30

    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.

    Avatar: Jack Richardson
    Jack Richardson
    Support staff
    November 8, 2016 at 19:29

    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.

  • 1 2 3 195 196 197 541 542 543
    Viewing 5,880 results - 5,851 through 5,880 (of 16,289 total)
Viewing 30 posts - 5,851 through 5,880 (of 16,289 total)
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.