Forum Replies Created

Viewing 30 posts - 48,901 through 48,930 (of 67,539 total)
  • Author
    Posts
  • in reply to: LayerSlider WP broken and needs update? #454345

    Hey Fran!

    Thank you for using Enfold.

    Is the layer slider not working? You can just ignore the message for now. The latest version of the theme, 3.2, includes the latest version of the plugin. Please wait for that. The plugin is included in the theme package so you will not be able to update it manually. And you don’t have to buy the plugin. Who told you to buy it in the first place?

    Best regards,
    Ismael

    in reply to: WPML – curvy stles #454343

    Hey!

    The home page of the english language is set to the default editor. It is fixed now: http://orderflowtrading.net/

    You have to sync or translate the main menu. https://wpml.org/documentation/getting-started-guide/translating-menus/

    Best regards,
    Ismael

    in reply to: Issue with footer size #454338

    Hey mdmllc!

    Thank you for using Enfold.

    The footer height will depend on the content inside. The current height is quite normal for a 3 widget footer on mobile device. Having said that, you have to compress the footer widgets in order to decrease the height of the footer container. You can start by decreasing the font size, widget margins etc. Use css media queries. Example:

    @media only screen and (max-width: 767px) {
    #footer .widget p {
      font-size: 11px !important;
    }
    
    #footer .widget {
      margin: 10px 0 5px 0;
    }}

    Regards,
    Ismael

    in reply to: Multi Colored Nav Menu #454335

    Hey Jameel!

    Thank you for using Enfold.

    We already answered this inquiry before. Please avoid creating duplicated posts: https://kriesi.at/support/topic/multi-colored-nav-menu/

    You can try this for the first two menus:

    #top #wrap_all .av_seperator_big_border#header li#menu-item-31 > a, #top #wrap_all .av_seperator_big_border#header li#menu-item-31 > a > .avia-menu-text {
      background-color: red !important;
      color: white;
    }
    
    #top #wrap_all .av_seperator_big_border#header li#menu-item-30 > a, #top #wrap_all .av_seperator_big_border#header li#menu-item-30 > a > .avia-menu-text {
      background-color: blue !important;
      color: white;
    }

    As you can see the only difference in the css selectors are the menu id li#menu-item-30 and li#menu-item-31. You can do the same for the remaining menu items. Use google inspector or firebug to get the proper id.

    Regards,
    Ismael

    in reply to: Enfold installation doesn't work #454326

    Hi Bubarama!

    Thank you for using Enfold.

    Please read the documentation carefully: http://kriesi.at/documentation/enfold/install-enfold-over-ftp/

    And this article will help to get you started with Enfold: http://kriesi.at/archives/wordpress-beginners-how-to-start-with-enfold-from-scratch

    Regards,
    Ismael

    in reply to: 3.1.5 Upgrade killed my Sidebars! #454322

    Hi!


    @Muskrat37
    : What did you upgrade, the theme or WordPress? This issue should only happen once, when you update to WordPress 4.2 and then upgrade the theme to 3.1.4. On version 3.1.5, the sidebars should be intact unless you added special characters in the custom widget area name. Unfortunately, you can’t use the database to import the sidebar settings. We tried this method but failed.

    Regards,
    Ismael

    in reply to: Fullwidth slider and sidebar conflict on Blog page #453896

    Hi!

    Since you delete the default blog page, the blog option in theme options panel has been reset to default. We set it again for you: http://bursttobright.com/blog/

    Cheers!
    Ismael

    in reply to: Blog layout #453890

    Hi!

    It’s not possible without modifying the core files. You can add the blog posts element and select categories or tag related to the current post. Set the layout to grid, limit the number of entries and disable the pagination. You should also enable the Offset Number to avoid duplicated post.

    OR edit the template-builder.php, look for this code:

    	echo $content;
    

    Below, add this code:

    //show related posts based on tags if there are any
         if(is_single()) get_template_part( 'includes/related-posts');

    Regards,
    Ismael

    in reply to: Layout question on Advanced Editor #453882

    Hi jenki!

    Thank you for using Enfold.

    It’s not possible to stack another column in that space. You can try the Grid Row element instead. Set the cell size to 4/5, 1/5. Set the padding of the cells to 0 then place two 1/2 column layout inside the 4/5 cell. If you want more content below the 1/2 columns, just add another column. Since the grid row element is set to full width by default, you will need to adjust it using the Quick CSS field.

    Best regards,
    Ismael

    in reply to: Portfolio Arrows issue #453866

    Hi!

    Delete the functions-enfold.php file in the child theme and then try to copy the whole avia_post_nav function in the child theme’s functions.php file:

    function avia_post_nav($same_category = false, $taxonomy = 'category')
    	{
    		global $wp_version;
    	        $settings = array();
    	        $settings['same_category'] = $same_category;
    	        $settings['excluded_terms'] = '';
    			$settings['wpversion'] = $wp_version;
    
    		//dont display if a fullscreen slider is available since they overlap
    		if((class_exists('avia_sc_layerslider') && !empty(avia_sc_layerslider::$slide_count)) ||
    			class_exists('avia_sc_slider_full') && !empty(avia_sc_slider_full::$slide_count) ) $settings['is_fullwidth'] = true;
    
    		$settings['type'] = get_post_type();
    		$settings['taxonomy'] = ($settings['type'] == 'portfolio') ? 'portfolio_entries' : $taxonomy;
    
    		if(!is_singular() || is_post_type_hierarchical($settings['type'])) $settings['is_hierarchical'] = true;
    		if($settings['type'] === 'topic' || $settings['type'] === 'reply') $settings['is_bbpress'] = true;
    
    	        $settings = apply_filters('avia_post_nav_settings', $settings);
    	        if(!empty($settings['is_bbpress']) || !empty($settings['is_hierarchical']) || !empty($settings['is_fullwidth'])) return;
    
    	        if(version_compare($settings['wpversion'], '3.8', '>=' ))
    	        {
    	            $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	            $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	        }
    	        else
    	        {
    	            $entries['next'] = get_previous_post($settings['same_category']);
    	            $entries['prev'] = get_next_post($settings['same_category']);
    	        }
    
    		$entries = apply_filters('avia_post_nav_entries', $entries, $settings);
            $output = "";
    
    		foreach ($entries as $key => $entry)
    		{
                if(empty($entry)) continue;
    			$the_title 	= isset($entry->av_custom_title) ? $entry->av_custom_title : avia_backend_truncate(get_the_title($entry->ID),75," ");
    			$link 		= isset($entry->av_custom_link)  ? $entry->av_custom_link  : get_permalink($entry->ID);
    			$image 		= isset($entry->av_custom_image) ? $entry->av_custom_image : get_the_post_thumbnail($entry->ID, 'thumbnail');
    
                $tc1   = $tc2 = "";
                $class = $image ? "with-image" : "without-image";
    
                $output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";
    		    $output .= "    <span class='label iconfont' ".av_icon_string($key)."></span>";
    		    $output .= "    <span class='entry-info-wrap'>";
    		    $output .= "        <span class='entry-info'>";
    		    $tc1     = "            <span class='entry-title'>{$the_title}</span>";
    if($image)  $tc2     = "            <span class='entry-image'>{$image}</span>";
                $output .= $key == 'prev' ?  $tc1.$tc2 : $tc2.$tc1;
                $output .= "        </span>";
                $output .= "    </span>";
    		    $output .= "</a>";
    		}
    		return $output;
    	}

    Regards,
    Ismael

    in reply to: Video in slider not playing #453863

    Hey!

    I want to check it but I get a forbidden error when I tried to access the wp dashboard. Please check.

    Best regards,
    Ismael

    in reply to: backgrounds and some content missing Windows mobile #453862

    Hey!

    Where can we find the actual page? I checked the site above (http://sundaradesign.com.au/) but it’s not using Enfold.

    Alright. I find the correct url but it is on maintenance mode. You also forgot the username.

    Best regards,
    Ismael

    in reply to: Catalogue shortcode, multiple prizes #453859

    Hi!

    You can add this in the Quick CSS field to keep them from overlapping on smaller screens.

    @media only screen and (max-width: 767px) {
    .av-catalogue-title, .av-catalogue-price {
      position: relative;
    }}

    You can also decrease the font size.

    Cheers!
    Ismael

    Hi!

    You can try the “avia_meta_header” action hook. Make sure that the top header is enabled or at least you have something enabled on Header > Extra Elements panel. Provide the url to the website so that we can see it.

    Cheers!
    Ismael

    in reply to: More image sizes in folder than available to insert #453850

    Hey!

    If you want to add all thumbnails in the drop down list, you can edit functions.php. Look for this code:

    $avia_config['selectableImgSize'] = array(
    	'square' 				=> __('Square','avia_framework'),
    	'featured'  			=> __('Featured Thin','avia_framework'),
    	'featured_large'  		=> __('Featured Large','avia_framework'),
    	'portfolio' 			=> __('Portfolio','avia_framework'),
    	'gallery' 				=> __('Gallery','avia_framework'),
    	'entry_with_sidebar' 	=> __('Entry with Sidebar','avia_framework'),
    	'entry_without_sidebar'	=> __('Entry without Sidebar','avia_framework'),
    	'extra_large' 			=> __('Fullscreen Sections/Sliders','avia_framework'),
    );
    

    Above that, you can find the list of thumbnails available in the theme. You can register the other thumbnails in the $avia_config[‘selectableImgSize’] array.

    Best regards,
    Ismael

    in reply to: Layer Slider Bug/Issue #453838

    Hey cooperjitts!

    Thank you for using Enfold.

    Edit the slides then click the “Select Transition” > “3D” tab, disable the 3D effects. The 3D effects are currently enabled for all slides.

    Regards,
    Ismael

    in reply to: Color Section Background Overlay Opacity IE8 #453834

    Hi scotthco!

    Thank you for using Enfold.

    Please add this to the Quick CSS field to fix the overlay on IE8:

    .avia-msie-8 .av-section-color-overlay {
      opacity: .5;
    }

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Menu Bottom Border – How to edit #453831

    Hi!

    Great! If you have any question, let us know. :)

    Regards,
    Ismael

    in reply to: remove captions for mobile #453829

    Hey!

    You can remove the plugin cache on Settings > WP Super Cache > Delete Cached Pages panel. Please check it now: http://personalhistorystories.com/

    This the code in the Quick CSS field:

    @media only screen and (max-width: 768px) {
    .responsive #top .slideshow_caption {
      display: none !important;
    }}

    Cheers!
    Ismael

    Hi satucker!

    Thank you for using Enfold.

    Those files are necessary to load first before the content to render the page properly so you just to need to ignore that error. You can install a cache and a minify plugin to compress some of the scripts to get rid of some of the errors. https://kriesi.at/support/topic/page-speed-problems/

    Regards,
    Ismael

    in reply to: Demo Import Still Not Working #453812

    Hey!

    I think it’s best if you contact your hosting provider regarding the issue. This is clearly a server related issue so their help will be substantial. Anyway, if you can increase the wp memory limit, it might help. Please refer to this link: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/

    Best regards,
    Ismael

    Hi!

    You can modify the template-builder.php. This is the file responsible for the advance layout builder. You can use conditional functions so that your modifications will only affect the product pages. Please contact codeable for further modifications: http://kriesi.at/contact/customization

    Cheers!
    Ismael

    Hi!


    @stuffthatspins
    : Thanks for sharing. :)

    Regards,
    Ismael

    in reply to: How to create a section ID #453777

    Hi!

    Yes, you can use any section name. Make sure that it is unique and doesn’t contain any special characters.

    Regards,
    Ismael

    in reply to: layerslider doesn't work (shown) #453775

    Hey!

    https://kriesi.at/support/topic/layerslider-doesnt-work-shown/#post-451949

    I tried the login credentials above but I can’t login to the site, too. Please contact your hosting provider. Or create another admin user.

    Cheers!
    Ismael

    in reply to: looking for image which is on demo homepage #453763

    Hey anubis!

    Thank you for using Enfold.

    I’m not sure where exactly Kriesi got that picture but you can find free stock photos here:

    http://www.gratisography.com/
    https://unsplash.com/
    https://stocksnap.io/
    http://littlevisuals.co/

    Regards,
    Ismael

    Hi!

    Use the Icon element then set the Icon Style to the second option.

    Cheers!
    Ismael

    Hey COLORIT!

    Thank you for using Enfold.

    Popularity can be based on different criteria. Are you trying to show posts with the most views, most comments or etc? As you can see, there is no default option for that in the theme so this will be considered as a custom work. The only element that is closest to what you’re trying to achieve is the Enfold Combo Widget which contains a Popular posts tab base on the number of comments of a post. Try to look for a plugin like this: https://wordpress.org/plugins/wordpress-popular-posts/

    Cheers!
    Ismael

    in reply to: Background Image on specific page #453070

    Hey dburton77!

    Thank you for using Enfold.

    You can try this:

    .page-id-1325 #main {
      background: url("//utah.momentumrecycling.com/wp-content/uploads/2015/06/grp-bg.jpg") repeat;
      background-color: transparent;
    }
    
    .page-id-1325 .main_color {
      background-color: transparent;
    }

    Regards,
    Ismael

    Hi!

    I checked the page but it doesn’t exist. Try to use the Color Section in order to change the background for that specific page. Place all content inside the Color Section.

    Best regards,
    Ismael

Viewing 30 posts - 48,901 through 48,930 (of 67,539 total)