Viewing 30 results - 3,781 through 3,810 (of 7,495 total)
  • Author
    Search Results
  • #787527
    peta_moonstone
    Participant

    Hello, I have updated a client’s website to Enfold Version 4.0.5. Once the update was completed the screen went blank.

    A list of events is shown below:

    1. Backed up database and website files using the Updraft Plus plugin
    2. Update the Updraft Plus plugin from Version 1.12.34 to Version 1.12.40
    3. Update Enfold theme from Version 4.0.2 to Version 4.0.5
    4. Screen to the back end went white

    Since then my client has accessed their FTP and tried renaming the Enfold theme folder via FTP, once this is performed the wp-admin is again accessible. He then switched to the TwentySixteen theme and renamed the enfold theme folder back to ‘Enfold’ in FTP. Then went back into wp-admin and attempted to switch the site over to the Enfold theme but it immediately flicked him out to the ‘Error 500’ page and again, WP-Admin was no longer accessible. The site is now running the Twenty Sixteen theme so that wp-admin is accessible.

    The plugins we have running on this site are Akismet, Updraft Plus, Woocommerce, Wordfence, Yoast SEO and Wp Smush IT. Nothing has been updated since the ‘white screen’ crash.

    My client has created login details for you to access the website and FTP. These are posted in private content.

    We have both been researching the various threads with similar issues in your support forum and it is all getting quite confusing with so many possible reasons. If you could please have a look at the website and offer some assistance on the best way forward we would really appreciate it.

    Thank you for your assistance.

    #787271
    Mike61
    Participant

    Hi Team,
    WPML an Enfold most works fine together, but the ajax-search show some text
    in german instead english (e.g. Beiträge, Produkte) – why? The links works correct
    and shows the english items.
    search

    #786651
    Jacobt
    Participant

    I have built my website and know that woocommerce and enfold were having some problems together recently. I researched and fixed my initial problem, which was getting an error message over all of the images on the variable product page. I added a code given in the forum to my child theme and it fixed that. This was the post- https://kriesi.at/support/topic/enfold-theme-woocommerce-product-images-not-showing-as-of-4-4-17/page/3/#post-773385.

    The problem I am having now is that I do not have any thumbnails. All my pictures are the same size. I tried making another product page and I have the same problem. Another problem that is occurring is that the side bar menu gets pushed all the way down to the bottom of the page. Please help!

    Hi, any luck on this?

    Below is is at least my temporary dirty fix. Hopefully you guys have an another more sustainable solution, now that you know this framework a bit better than i. :)

    /* 
    * OVERRIDE A FUNCTION IN enfold/woocommerce/config.php
    * This fixes an error in the search results when searched from the woocommerce search widget
    * Support ticket: https://kriesi.at/support/topic/avia-custom-woo-page-incompatible-with-woocommerce-search-widget/
    */
    add_filter( 'pre_get_posts', 'avia_woocommerce_default_page', 100 );		
    function avia_woocommerce_default_page($query)
    {
        if(current_theme_supports('avia_custom_shop_page'))
        {
    	    if(!$query->is_admin && $query->is_main_query() && !$query->is_tax && $query->is_archive && $query->is_post_type_archive)
    	    {
    	    	$vars = $query->query_vars;
    	    
    	    	if(isset($vars['post_type']) && 'product' == $vars['post_type'] )
    	    	{
    	    		$shop_page_id 	= wc_get_page_id( 'shop' );
    	    		$builder_active = AviaHelper::builder_status($shop_page_id);
    	    		
    	    		if($builder_active == "active" && !$query->is_search)
    	    		{
    	    			$query->set( 'post_type', 'page' );
    	    			$query->set( 'p', $shop_page_id  );
    	    			$query->set( 'meta_query', array() );
    	    			
    	    			$query->is_singular = true;
    	    			$query->is_page 	= true;
    	    			$query->is_archive  = false;
    	    			
    	    			$query->is_post_type_archive  = false;
    	    			$query->query = array('p'=>$shop_page_id, 'post_type' => 'page');
    	    		
    	    		}elseif ($query->is_search){
    	    		    	$query->is_singular = false;
    		    			$query->is_page 	= false;
    		    			$query->is_archive  = false;
    		    			$query->is_shop = false;
    		    			
    		    			$query->is_post_type_archive  = false;
    	    		    
    	    		    add_filter( 'template_include', function() {
                          return locate_template( 'search.php' );
                        }, 100 );
    	    		    
    	    		}
    	    	}
    	    }
    	}  
    	
    return $query;
    	
    } 
    #785931

    Hi Rikard,

    I’m confused. Is this CSS for the Mobile/Responsive version of the page? Because the Desktop version looks perfect as is. I removed the CSS that was prohibiting the Logo from being displayed on mobile.

    So, now it look like this:

    Search Box Oveerlapping Logo on Mobile

    I think there are 3 options here:
    1- add the CSS code I had the removes the logo from displaying
    2- Making the logo smaller and the search box smaller too?
    3- Making sure the Search Box displays below the Logo and the Hamburger Menu (I think this would be the nicest one and many people would love to have this)

    For #3. we would need to adjust this CSS, correct?

    @media only screen and (max-width: 767px) {
    #header .widget {
    left: 40%;
    padding-top: 1.5em;
    position: absolute;
    top: 0;
    transform: translate(-50%);
    z-index: 1;
    width:45%;
    max-width: 55%;
    }}

    Thank you so much for your kind help!!

    Warmly,

    Havi
    PS: I just referred you two more Enfold licenses. ;) Love Enfold!!!

    #785729

    Hey!

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .ajax_search_excerpt {
        display: none;
    }
    

    Best regards,
    Yigit

    #784963

    Hey djstangl,

    There are a few ways to go about it. The color is set in theme options somewhere. I would remove background color from the inputs or make the color a bit lighter. The code below does that.
    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
          background-color: #e3e3e3;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    • This reply was modified 8 years, 11 months ago by Victoria.
    #784878
    concoa
    Participant

    I love Enfold and have built a few sites with it!
    New Site:
    I need to have search filter to show properties (modular homes) that have certain components (options) like: square footage, bedrooms, baths, price range, etc. Similar to a real estate site, but not for an address, not MLS listings. Maybe more similar to a car dealership with models and options. So customers can filter by amenities and a sliding range of pricing.
    Can you please, please recommend something that will work with Enfold???
    • I can put in WooCommerce but we don’t need the cart/checkout. No one is purchasing through the site.
    • If I use a regular post or portfolio entry, the slider needs to work with the theme. Plus, I need the ability to utilize templates.
    I sure would appreciate help on this from anyone that knows of a plugin that would work.

    BeeCee
    Participant

    Hi,

    the gravatar images in the comments are not loaded:

    Firefox’ Firebug:

    • I use no plugins for the gravatars.
    • I have made a search/replace in my database and all is set to https
    • ENFOLD 4.0.5
    • PHP 7
    • I use Let’s Encrypt at All-Inkl.com

    I have already deactivated all other plugins without success.

    I checked this post with https://www.whynopadlock.com/check.php and the result is,
    that http://i0.wp.com/wp_user_avatar is an insecure URL.

    Is here something wrong with the gravatar URL handled in ENFOLD?

    Another theme on the same server is working with the standard gravatar image: http://screencloud.net/v/sWro2

    EDIT:
    just discovered that only the images are blocked, that do not have a Gravatar account (= fictive test comments from “Max” and “Susan”).
    The other comments do have one and shows the gravatar right.
    It seems that the blank gravatar image, the standard, is not shown with an image.

    Hi Andy,

    I was actually able to pretty easily find the code to add to my custom css. For anyone else looking to increase the size at which enfold switches to enfold, you’ll need to search/replace all the media queries in your css at 767px to your required pixels. After that, you just need to copy this code below and change the media queries to your need, just do a search and replace for “1024”.

    /* == 1024 tablet view fix == */
    @media only screen and (max-width: 1024px) {
    		
    		
    		/*blog*/
    		.responsive .template-archives .tab_inner_content li{width:98%;}
    		.responsive .template-blog .blog-meta,
    		.responsive .post_author_timeline,
    		.responsive #top #main .sidebar {display:none; }
    		.responsive #top #main .sidebar.smartphones_sidebar_active{display:block;text-align: left; border-left: none; border-right: none; border-top-style: dashed; border-top-width: 1px; width: 100%; clear: both;}
    		.responsive #top #main .sidebar.smartphones_sidebar_active .inner_sidebar{margin:0;}
    		.responsive .content .entry-content-wrapper{padding:0;}
    		.responsive .content{border:none;}
    		.responsive .template-blog .post_delimiter { margin: 0 0 30px 0; padding: 30px 0 0 0; }
    		.responsive .big-preview{padding: 0 0 10px 0;}
    		.responsive .related_posts{padding:20px 0;}
    		.responsive .comment_content{padding-right:0; padding-left:0;}
    		.responsive .fullsize div .template-blog .entry-content-wrapper{text-align: left; font-size:14px; line-height: 24px;}
    		.responsive #top .fullsize .template-blog .post .entry-content-wrapper > * { max-width: 100%; }
    		.responsive #top .avia-post-nav { display: none; }
    		.responsive #top .av-related-style-full .no_margin.av_one_half.relThumb{display: block; width:100%; clear:both;}
    		
    		/*all templates*/
    		.responsive .title_container .breadcrumb{position: relative;right:auto; top:-6px; margin:0; left:-2px;}
    		.responsive .pagination{padding-left: 0; padding-right: 0;}
    		.responsive #header .main_menu .social_bookmarks{display:none;}
    		.responsive #top .av-hide-on-mobile, .responsive #top .av-hide-on-tablet{display:none !important;}
    		
    		
    		/*header*/
    		.responsive #top .av_header_transparency.av_alternate_logo_active .logo a > img{opacity:1}
    		.responsive #top .av_header_transparency .logo img.alternate{display:none;}
    		
    		.responsive #top #wrap_all #header {position: relative; width:100%; float:none; height:auto; margin:0 !important; opacity: 1; min-height:0;}
    		.responsive #top #main {padding-top:0 !important; margin:0;}
    		.responsive #top #main .container_wrap:first-child{ border-top:none; }
    		.responsive.html_header_top.html_logo_center .logo { left: 0%; -webkit-transform: translate(0%, 0); -ms-transform: translate(0%, 0); transform: translate(0%, 0); margin:0; }
    		.responsive .phone-info{float:none; width:100%; clear:both; text-align: center;}
    		.responsive .phone-info span{margin:0;padding:0; border:none;}
    		.responsive.html_header_top #header_main .social_bookmarks ,
    		.responsive.html_top_nav_header #top .social_bookmarks { right: 50px; width:auto; margin-top:-16px; }
    		
    		.responsive #header_main .inner-container, .responsive .main_menu{position: static;}
    		.responsive #top .logo{position: static; display:table; height:80px !important; float:none; padding:0; border:none; width:80%; }
    		.responsive .logo a{display:table-cell; vertical-align: middle;} 
    		.responsive .logo img{height:auto !important; width:auto; max-width: 100%; display: block;  max-height: 80px;}
    		.responsive #header_main .container{height:auto !important; }
    		.responsive #top .header_bg { opacity: 1; filter: alpha(opacity=1); }
    		.responsive.social_header .phone-info {text-align: center; float:none; clear:both; margin:0; padding:0;}
    		.responsive.social_header .phone-info span{border:none; width:100%; text-align: center; float:none; clear:both; margin:0; padding:0;}
    		.responsive #header_meta .social_bookmarks li{ border-style:solid; border-width:1px; margin-bottom:-1px; margin-left:-1px;}
    		.responsive #top #header_meta .social_bookmarks li:last-child{border-right-style: solid; border-right-width:  1px;}
    		.responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul{float:none; width:100%; text-align: center; margin:0 auto; position: static;}
    		.responsive #header .social_bookmarks{padding-bottom:2px; width:100%; text-align: center; height:auto; line-height: 0.8em; margin:0;}
    		.responsive #header_meta .sub_menu>ul>li{float:none; display: inline-block; padding: 0 10px;}
    		.responsive #header .social_bookmarks li{float:none; display: inline-block;}
    		.responsive.bottom_nav_header #header_main .social_bookmarks{ position: relative; top: 0; right: 0; margin: 10px auto; clear:both;}
    		.responsive.bottom_nav_header.social_header .main_menu>div{height:auto;}
    		.responsive .logo img{margin:0;}
    		.responsive.html_header_sidebar #top #header .social_bookmarks{display:none;}
    		.responsive body.boxed#top, .responsive.html_boxed.html_header_sticky #top #header{max-width: 100%;}
    		
    		.responsive.html_header_transparency #top .avia-builder-el-0 .container, .responsive.html_header_transparency #top .avia-builder-el-0 .slideshow_inner_caption{padding-top:0;}
    		.responsive #top .av_phone_active_right .phone-info.with_nav span{border:none;}
    		
    		.responsive #top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a, 
    		.responsive #top #wrap_all .av_header_transparency .sub_menu > ul > li > a, 
    		.responsive #top .av_header_transparency #header_main_alternate, 
    		.responsive .av_header_transparency #header_main .social_bookmarks li a,
    		.responsive #top #wrap_all .av_header_transparency .phone-info.with_nav span,
    		.responsive #top .av_header_transparency #header_meta, 
    		.responsive #top .av_header_transparency #header_meta li,
    		.responsive #top #header_meta .social_bookmarks li a{ color:inherit; border-color: inherit; background: inherit;}
    		.responsive.html_top_nav_header .av-logo-container{height:auto;}
    		.responsive.html_top_nav_header .av-section-bottom-logo{border-bottom-style: solid; border-bottom-width: 1px;}
    		
    		/*related images*/
    		.responsive #top .related_entries_container .av_one_eighth{width:25%;}
    		.responsive #top .relThumb5{clear:both;}
    		
    		
    		.responsive.html_header_transparency #top .avia-builder-el-0 .container{padding-top:0px;}
    		.responsive.html_header_sidebar #header .avia-custom-sidebar-widget-area{display:none;}
    		.responsive.html_header_sidebar #main{ border: none; }
    		
    		/*tabs*/
    		.responsive.js_active #top .avia_combo_widget .top_tab .tab{ border-top: 1px solid; border-bottom:none; width: 100%; }
    		.responsive.js_active #top .avia_combo_widget .news-wrap li{padding:5px;}
    		
    		/*widgets*/
    		.tagcloud a{ padding:8px 20px; margin:0 8px 8px 0; }
    		.widget li{line-height: 1.8em; font-size: 15px;}
    		
    		/*footer*/
    		.responsive #scroll-top-link{display: none;} /*iphones etc scroll better by tapping the status bar at the top of the screen*/
    		
    		.responsive #socket .sub_menu_socket{    
    			display: block;
    			float: none;
    			width: 100%;
    			clear: both;
    			margin: 0 0 0 -15px;
    			}
    		
    	 	}
    
    	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
    	@media only screen and (min-width: 480px) and (max-width: 1024px) {
    
    		
    
    		/*portfolio*/
    		.responsive #top #wrap_all .grid-sort-container.grid-total-odd .grid-entry.grid-loop-1{width:100%;}
    		.responsive #top #wrap_all .grid-sort-container .grid-entry{ width:50%; margin-bottom: 0;}
    		.responsive #top #wrap_all .portfolio-parity-odd{ clear:both; }
    		
    	}
    
    @media only screen and (max-width: 1024px) {
    .main_menu .avia-menu, #header_main_alternate, .fallback_menu{display:none;}
    .container #advanced_menu_toggle, #advanced_menu_hide{display:block;}
    .responsive.html_mobile_menu_tablet.html_logo_right #advanced_menu_toggle{left:auto;}
    }
    
    /* == End 1024 tablet view fix == */
    • This reply was modified 8 years, 11 months ago by haydaw.
    #784546

    In reply to: Woocommerce 3.0

    @zaccc I totally understand what you are saying. But I am a developer and I know software has no warranties. It is the nature of open source development. You expect something that simply is not possible. Even in closed source development you wont get a guaranty for the software doing what you want. And this is where the advantages of open source development and the spirit of wordpress come in. If there is a bug anyone able and willing to help can fix it.

    You simply can’t say Kriesi missed it. Look at other themes they even are not willing to support the new gallery from WooCommerce 3. They remove it and continue with their own solution. And even WooCommerce 3 was not perfect on day one. We are close to version 3.0.5 and still daily new issues are revealed. Many of them so rare that you even could not think of before. I know it is difficult for end users and for non-developers to understand whats happening behind the scenes.

    If eCommerce is your business than you have to test yourself every aspect before updating. I can post a list of more then 40 well known WooCommerce plugins and themes that stopped working after updating to woocommerce 3. You can’t expect them all to work within a few days after a major WooCommerce release hits the market.

    So don’t push your self. Simply wait. And if Enfold gets a new version wait again. Visit the forum. Use the search and read what others say. If there are no complaints for a week install it on development server and test it with your plugins. If all works role out the update to your production environment.

    #784455

    Hey Cmpannuk,

    you need to search for a plugin with such a function. Enfold does not provide such feature.

    Best regards,
    Andy

    #784453

    Hey WebjunkieCreative,

    for this function you would need to search for a plugin, as Enfold can’t provide this to you.

    Best regards,
    Andy

    #784397
    #784307
    Marcel Jutzi
    Guest

    Hi Kriesi team … I am just looking at your Enfold theme for wordpress. Fabulous design.
    I am a personal coach and author having written many papers. I need a new website where I can sell my writings as e-books. I am not sure if Enfold does provide the platform to sell e-books even though it offers e-commerce. My research tell me that selling e-books is different.
    Can you please suggest an appropriate theme which makes it easy to include selling e-books … and if Enfold would do this too?
    Thank you very much for taking the time to answer … best regards
    Marcel

    #783923
    Abbe
    Participant

    Hi,
    We’re developing a corporate site and we are facing a big problem trying to translate the taxonomy base slug.
    Our thought was that if we registered our custom post and taxonomies the way u register portfolio post type we would be able to translate the base slug… but it didn’t worked. Later I tried translating the portfolio base and it doesn’t work either.

    I have the latest update of enfold and WPML installed.
    Example of our CPT & Tax:

    add_action('init', 'news_register_extended', 999 );
    function news_register_extended()
    {
        global $avia_config;
    
        $labels = array(
            'name' => _x('News Items', 'post type general name','avia_framework'),
            'singular_name' => _x('News Entry', 'post type singular name','avia_framework'),
            'add_new' => _x('Add New', 'portfolio','avia_framework'),
            'add_new_item' => __('Add New Item Entry','avia_framework'),
            'edit_item' => __('Edit News Entry','avia_framework'),
            'new_item' => __('New Entry','avia_framework'),
            'view_item' => __('View News Entry','avia_framework'),
            'search_items' => __('Search News Entries','avia_framework'),
            'not_found' =>  __('No News Entries found','avia_framework'),
            'not_found_in_trash' => __('No News Entries found in Trash','avia_framework'),
            'parent_item_colon' => ''
        );
    
        $permalinks = get_option('avia_permalink_settings');
        if(!$permalinks) $permalinks = array();
    
        $permalinks['news_permalink_base'] = empty($permalinks['news_permalink_base']) ? __('news-item', 'avia_framework') : $permalinks['news_permalink_base'];
        $permalinks['news_entries_taxonomy_base'] = empty($permalinks['news_entries_taxonomy_base']) ? __('news_entries', 'avia_framework') : $permalinks['news_entries_taxonomy_base'];
    
        $args = array(
            'labels' => $labels,
            'public' => true,
            'show_ui' => true,
            'capability_type' => 'post',
            'hierarchical' => false,
            'rewrite' => array('slug'=>_x($permalinks['news_permalink_base'],'URL slug','avia_framework'), 'with_front'=>false),
            'query_var' => true,
            'show_in_nav_menus'=> true,
            'taxonomies' => array('post_tag'),
            'supports' => array('title','thumbnail','excerpt','editor','comments')
        );
    
        $args = apply_filters('avf_news_cpt_args', $args);
        $avia_config['custom_post']['news']['args'] = $args;
    
        register_post_type( 'news' , $args );
    
        $tax_args = array(
            "hierarchical" => true,
            "label" => "News Categories",
            "singular_label" => "News Category",
            "rewrite" => array('slug'=>_x($permalinks['news_entries_taxonomy_base'],'URL slug','avia_framework'), 'with_front'=>true),
            "query_var" => true
        );
    
        $avia_config['custom_taxonomy']['news']['news_entries']['args'] = $tax_args;
    
        register_taxonomy("news_entries", array("news"), $tax_args);
    
        //deactivate the avia_flush_rewrites() function - not required because we rely on the default wordpress permalink settings
        remove_action('wp_loaded', 'avia_flush_rewrites');
    }

    Please help : ) and thank you for your effort with this theme.

    #783431

    Hey hingex,

    Please try the following in Quick CSS under Enfold->General Styling:

    #woocommerce_product_search-3 {
      padding:0 !important;
    }

    Best regards,
    Rikard

    rmf339
    Participant

    Hi all,

    I’m posting this in the hope to help many others who would spend LOT OF TIME in search for a solution.

    I guess I’m another one who faced these product pages 404 issue after installing/updating WPML.

    I’ve seen a lot of them all over, here and in WPML forums, with several different resolutions. I tried testing a lot of them. Came to the conclusion that the solution for over half of the users is very SIMPLE.

    What’s the environment:
    I have Kriesi’s Enfold theme, WooCommerce, WPML (with Media, Multilingual CMS, String Translation, Translation Management and WooCommerce Multilingual plugins) and Yoast all last versions. I have Portuguese as the default language and English/Spanish as translations. I don’t have any other major plugin, only a few specific ones. I have 512M memory_limit and 30s max_execution_time in php.ini.

    What I’m facing:
    In my base language (Portuguese) everything seems fine, but product pages (only) are returning 404 in any translation. I’ve seen many people having similar problem in product category pages. Similar solution might work, it’s worth the test.

    What I’ve tried:
    Reapplying Permanent Links (without changing – HERE’S MY MISTAKE), rescanning WooCommerce plugin

    for strings (in WPML – Theme and Plugin Localization), re-added translation for all slugs. Still 404 for products. I tried disabling and re-activating WPML, not successful. I tried disabling Yoast, nothing. I tried so many other things that I can’t even remember.

    WHAT IS THE SOLUTION?
    On reapplying the product permanent links, if you use CUSTOM BASE, change it to DEFAULT. Translate it (there’s a translate button right below, so no big deal). Test the product page, they are going to work fine. Now get back there and change it again to CUSTOM BASE to whatever you want (make sure it isn’t your chosen word that is breaking the system) and translate it. As simple as that…

    I hope I could save few hours for someone!

    • This topic was modified 8 years, 11 months ago by rmf339.
    #782883

    Hi InternationalPartneringInstitute,

    I found a better spot for search.
    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 767px) {
    	.responsive #top .logo {
    		width: 60%;
    	}	
    
    #top-line .container {
    	max-width: 80%;
    }
    
    .avia-search-tooltip.avia-tt {
    	background-color: #fff;
    }
    }
    

    and this code has to go to your functions.php

    
    function av_move_search_mobile(){
    ?>
     <script>
    jQuery(window).load(function(){
    	jQuery("li#menu-item-search a").detach().css({"height": "auto", "line-height": "initial"}).appendTo('#top-line .container');
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'av_move_search_mobile');
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #782605

    Hi Guys, sorry to jump in on this post, but I have just searched for Forum regarding the map issue with TEC before posting a new thread.
    Thanks @Mike for the solution.
    Can I ask, will this be fixed in later Enfold releases or will we have to update all our themes where we use the TEC and TEC Pro calendar. I have a few themes in use.
    Thanks,
    H

    #782579

    Hey Harry,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .search-results .date-container, .search-results .date-container + .text-sep {
        display: none!important;
    }
    

    Best regards,
    Yigit

    rmf339
    Participant

    Hi all!

    Looks like I found another SEO challenge for Enfold users… Even though I configured NO SIDEBAR in Enfold options, I noticed that the sidebar source code (with all my product/pages internal links) was being included in my product page. It wasn’t displaying in the browser though. It seems to be somehow hidden.

    How I noticed? I shouldn’t have too many internal links. When I went for link count, I had more than 260 links, even though my product page seemed normal. Checking source code I found out that a Sidebar was being included in the code, but it wasn’t being shown. Since I’m not using a Sidebar, my Sidebar widget elements were empty.

    I searched for any known solution over the net but couldn’t find one. Then, reading instructions of parallel (not similar) problems with the Enfold’s Sidebar I decided to try something: I included a TEXT element in the Sidebar Widgets (both of them) with the following content: “Sidebar gone”.

    After inserting this text element into the widgets, EVEN WITH NO SIDEBAR OPTION ACTIVATED the source code of the Sidebar changed from many internal links to “Sidebar gone”. My links count went from 260 to 125. Access attached link and search the source code for “Sidebar gone” and you’ll see that the text element is there!

    I’m posting to register in case anyone looks for a simple fast solution. You can go on and close the topic!

    Best regards!

    • This topic was modified 8 years, 11 months ago by rmf339.
    #781933

    None of this works, the old URL now points somewhere else so throws a 404 error and will lock me out of the dashboard. Why does Enfold not update the url paths like every other theme? If I’d known this was going to be an issue I would never have gone here. Please ask me of your developers to help me. Search and Replace and Migration are not going to work in this case. Thank you.

    #781897

    Topic: Paralax Broken

    in forum Enfold
    therealcrazy8
    Participant

    I have been working on my business site (Guardian Tech Solutions) for quite some time now, and everything has been going well and working well, up until recent. To give you some quick background, 2 or so months ago my hosted account on Bluehost was hacked. This lead to MANY files across multiple websites being infected with something. Of course it was up to me to fix it, and spend hundreds of dollars to do so, not them, but that’s a whole separate rant I wont go into here. As of Easter, I was able to get the account cleaned, and start getting one of the websites online. Shortly after, I found a backup that was created a little bit before the account was hacked, and I ran a recovery and the other sites came back perfectly.

    After that, everything was running great and working great. The last couple days though, I have been noticing a few weird behaviors.
    1. All of the sudden when I make edits to any of the pages, I can save, hit update, then when I go to view the change on the website, it no longer shows the correction I just made.
    2. My Paralax seems to be breaking down too. It works on on at least one of my pages (Home page), but not the others (Business, Residential>Pricing, or Residential>PC Tune Up to name a few). I have not touched that setting, though I have gone in to look and verify that the pages were set to use Paralax, and they all were.
    3. On one of the pages that has Paralax, and isn’t working (Business), I also have a few icon lists where the icons gradually appear on the page, those no longer show at all.

    I’m not sure where to go or what to do to correct this. I have tried in all 3 browsers (Chrome, Firefox, and IE) all of them show the same issues. Going to the mobile site, that also is showing issues. On the mobile site from my phone, my business name doesn’t show (on the home page), which is a color section text field in WP, and the menu icon to go to other pages, also doesn’t show so I cant go to other pages. I’m not sure if there’s still something on the server causing these issues or what. The software I had to buy, Sitelock, is sending me emails saying everything is clean. I know there is a lot here, but any help in trying to fix this would be very much appreciated. I’m completely out of ideas, and I cannot start this site over. The amount of work and research put into this is too overwhelming.

    Thank you.

    Enfold: v.4.0.5
    Word Press: v.4.7.4

    • This topic was modified 8 years, 11 months ago by therealcrazy8.

    Thanks so much mensmaximus! Just to clarify a few things…
    1. I watched Ferdy’s Enfold Woocommerce tutorial on YouTube and he points out that you can have a sidebar using the Single Product Pages widget. Is this an option or should it not be used?
    2. I am running Enfold Version: 4.0.3. In my backend dashboard it’s telling me that my theme is up to date, but I did some research and it looks like there is a version 4.0.5. Is this correct? When I go to my Enfold Theme settings and to Theme update, it’s telling me No Updates available. You are running the latest version! (4.0.3). How would I update to the latest version then?
    3. My woocommerce is Version 3.0.4. It’s my understanding this is the latest version, and my plug in section is not asking me to update. Is this correct?
    4. Just to be clear, your patch is to download the enfold-child.zip, open the functions.php file and add your code snippet (Woocommerce 3.0.0 Compatibility Fix), save it, and then upload it as a new theme. This will wipe out my work, but if I go to the Enfold theme options to Import/Export and click the Import Parent Theme Settings, all my work will come back and everything should be fixed. Correct?

    Thanks for your time, much appreciated!

    #781286

    In reply to: Infinite Scroll

    Hi,

    we can’t really help you with this, as this is not a function which Enfold provides. So you need to search for a plugin which works for you. If you can’t find one, then you could hire a freelance developer for this job.

    Best regards,
    Andy

    #781227

    There are hundreds (at least it feels like hundreds) of threads about this two issues. Did you try the search on the forum?

    Solution for images: https://kriesi.at/support/topic/woocommerce-3-0-03-0-1-and-the-images-issue/
    Solution for category title: https://kriesi.at/support/topic/woocomerce-update-breaks-enfold/#post-778188

    #781052
    D1992_WP
    Participant

    Hello, I am trying to be able to make a post look like the following: http://search.stillsmallvoicetriage.org/message.php?id=814&langCode=en-US

    I want the picture in the upper left and the text to the right and have the text once reaching passed the picture height, move to the very left.

    The issue is I have tired to duplicate this with what Enfold provides and can’t get it right. I tired doing a 2/5ths column containing a picture and 3/5ths column containing a text box and eliminated the spacing between columns. Then if there was too much text I would guess and cut the text off and put in a 1/1 column under the above mentioned columns with a text box. However this turned out awful.

    The resolution of different screens causes the text and spacing to be all over the place.

    I also notice with the page I am trying to mimic, it’s scaling images based on the viewers screen resolution. I can’t get Enfold to do this.

    I somehow need a picture feature that has text wrapping that also will do scaling based on resolutions. I know it’s a simple layout, just how can it be done?

    Thanks for your time.

    #780934
    L
    Participant

    Hi guys,

    You see that into the feature request the changes for mobile appearance is a #1 request for a long time and the votes are keep counting.

    I dont want to push this but most of us are really waiting for these changes for some time and I hope the new mobile appearance will satisfy our needs. With all the respect of Kriesi and the work done, I decided to create this topic just in case you are interested to learn what the community considers as needed for the revamping of mobile navigation. I think a topic like this would help you to consider what needs to be implemented or done differently in order to maintain Enfold as a great theme.

    So here is my list of what should be changed:
    -Parent menu items that contains child menu items must be expandable by a tap of a finger it must include +/- to show visitors that it can be expandable;
    -Top menu (secondary menu) must be included into the mobile menu container;
    -Social icons and search field must be inside the mobile menu container;
    -A WPML language switcher element must be included on the top of mobile menu container – seperate placement from WP menus

    I hope this helps to consider what to change.

    Regards

    #780815
    CPM_usa
    Participant

    I searched all over the web and found some custom CSS to make my radio button (actually the checkbox) a toggle button side by side versus radio buttons in a line. The css is not working with your theme, so wondering if you are able to help?

Viewing 30 results - 3,781 through 3,810 (of 7,495 total)