Forum Replies Created

Viewing 30 posts - 8,371 through 8,400 (of 14,834 total)
  • Author
    Posts
  • in reply to: Price Filter on a Custom Shop Page #423274

    Hey!

    Our product grid shortcode should be displaying them in columns and our product list shortcode should be displaying them in rows.

    Cheers!
    Elliott

    Hi!

    Hmm, you cannot select the transparent header when editing the custom post type? If you do not see the header options when editing your custom post type then you can add them by doing this, https://kriesi.at/support/topic/put-enfold-post-layout-options-into-learndash-post/#post-394709.

    Regards,
    Elliott

    in reply to: Masonry sort on custom field #423268

    Hey!

    Oops, sorry, it looks like we got some new functionality in the new update that I wasn’t aware of.

    Hmm, since your gallery looks like it does not display any dates what I would do is just have the Masonry order the posts by date and then simply change the date for each post. This way you do not have to keep creating custom fields for your posts and you do not have to edit any files which will need to be redone after each update.

    Regards,
    Elliott

    in reply to: Responsive menu not showing after update #423265

    Hi!

    The second line of the code I posted changes the color. It’s not working? Perhaps you have a typo somewhere in your CSS. Send us a WordPress login and we’ll take a look.

    For the scroll to top button use this CSS.

    #scroll-top-link { display: block !important; }
    

    Regards,
    Elliott

    in reply to: Easy Slider height within Grid Row #423264

    Hey!

    You have too much content in the first cell so on smaller screens the slider will not fill all of the content. Would you like to try hiding it on smaller screens with CSS?

    If it was me I would use a color section and set the background to the green color your using and then use 1/2 + 1/2 columns to create that layout.

    Cheers!
    Elliott

    Hey!

    It looks fine on my end. Try clearing your browser cache.

    Regards,
    Elliott

    in reply to: How to change page title to blog post category name #423260

    Hi connect4consulting!

    Add this to the bottom of your functions.php file.

    function avia_default_title_filter($current_post)
    {
    	if(!empty($current_post['title']))
    	{
    		$heading = is_singular() ? "h1" : "h2";
    		$cat = get_the_category($current_post['the_id']);
    		$output  = "";
    		//$output .= "<{$heading} class='post-title entry-title ". avia_offset_class('meta', false). "'>";
    		$output .= "<{$heading} class='post-title entry-title' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">";
    		$output .= "	<a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$cat[0]->cat_name;
    		$output .= "			<span class='post-format-icon minor-meta'></span>";
    		$output .= "	</a>";
    		$output .= "</{$heading}>";
    
    		$current_post['title'] = $output;
    	}
    
    	return $current_post;
    }
    

    Cheers!
    Elliott

    in reply to: Woocommerce add to cart product shortcode, but … #423250

    Hi!

    I’ll go ahead and add this to our issue list to see what our devs think. In the meantime it would be best to use it on an actual product post instead of a page.

    Best regards,
    Elliott

    Hi!

    Send us a link and we’ll take a look.

    If your not using the latest version of Enfold, 3.1.3, then be sure to update and deactivate all plugins while testing.

    Best regards,
    Elliott

    in reply to: Product Widget in margin single post #423245

    Hey Max!

    I’m sorry but I am having trouble understanding. Your trying to display your products in a widget in your sidebar?

    Can you take a screenshot and highlight what your trying to do so we can get a better idea?

    Best regards,
    Elliott

    Hi!

    I cleared my cache and checked your site again but I still see the min-width CSS in your source code. Your using a minify plugin it looks like. Try deactivating that and clear the cache of any caching related plugins you might have installed.

    Regards,
    Elliott

    in reply to: Conflict CSS Enfold and Gravity Forms #423221

    Hey!

    Hmm, well it looks like in your screenshot except for the “Gravity parameter width small” which you could try adding this to your custom CSS to fix it.

    .gform_wrapper .top_label input.small, .gform_wrapper .top_label select.small {
      width: 25% !important;
    }
    

    Cheers!
    Elliott

    in reply to: Remove title for custom post type / custom taxonomy #423219

    Hi senso!

    That’s for the entry title that gets displayed with the breadcrumbs. You can find the default title around line 50 in /enfold/includes/helper-post-format.php.

    /**
     *   The avia_default_title_filter creates the default title for your posts.
     *   This function is used by most post types
     */
    if(!function_exists('avia_default_title_filter'))
    {
    	function avia_default_title_filter($current_post)
    	{
    		if(!empty($current_post['title']))
    		{
    			$heading = is_singular() ? "h1" : "h2";
    	
    			$output  = "";
    			//$output .= "<{$heading} class='post-title entry-title ". avia_offset_class('meta', false). "'>";
    			$output .= "<{$heading} class='post-title entry-title' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">";
    			$output .= "	<a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title'];
    			$output .= "			<span class='post-format-icon minor-meta'></span>";
    			$output .= "	</a>";
    			$output .= "</{$heading}>";
    	
    			$current_post['title'] = $output;
    		}
    
    		return $current_post;
    	}
    }

    Best regards,
    Elliott

    Hi!

    You need to set the maximum container width to 100% like so.

    Cheers!
    Elliott

    in reply to: Content keeps deleting itself while editing #423208

    Hey!

    I tried editing a few of your pages but it’s saving fine for me. Is there a certain page it’s happening on? If so then send us a link to the exact page please.

    Best regards,
    Elliott

    Hey!

    It’s possible but it would take a lot of time and code to implement so it would have to be considered custom work for now. You could create a feature request here, https://kriesi.at/support/enfold-feature-requests/, and if it gets enough interest we may see something get added in a future update.

    Regards,
    Elliott

    Hey Daniela!

    Hmm, it looks like your using a color section there with an image background. What happens when you set the background repeat to “Stretch to fit”?

    Cheers!
    Elliott

    Hi L!

    Add this to the bottom of your functions.php file.

    add_filter('avf_builder_boxes', 'avia_register_meta_boxes', 10, 1); 
    function avia_register_meta_boxes($boxes)
    {
    	$boxes[0]['title'] = "custom";
    	return $boxes;
    }

    Best regards,
    Elliott

    in reply to: Unstick Main Navigation if Sub Menu is being used #423198

    Hey Pappasdg!

    You can remove the sticky option for the main header in Dashboard > Enfold > Header > Header behaviour.

    Regards,
    Elliott

    Hi Julie!

    I’m not too familiar with multisite. Perhaps it’s a setting to set the default logo on all sites. Send us a WordPress login and we’ll take a look.

    Best regards,
    Elliott

    Hi!

    That appears to be working fine also.

    Right now you have a bunch of widgets set to the “Display Everywhere” widget area which, like it says in the name, will display everywhere. If you do not want that then remove those widgets and drag some other widgets to the “Single Product Pages” widget area which is for the single product view. I went ahead and dragged the advertising widget over to it so you can see it’s working.

    Best regards,
    Elliott

    in reply to: Archiv für Portfolio #423188

    Hey!

    Are you trying to display an archive widget but for custom post types? If so then try this plugin out, https://wordpress.org/plugins/custom-post-type-widgets/.

    It looks like it has widgets for displaying custom post type archives links, categories, etc etc.

    Best regards,
    Elliott

    in reply to: Content Element only visible in Tablets and Phones #423185

    Hi!

    You could use our blog posts element beneath the LayerSlider and then change the CSS to this.

    <style type = "text/css">
    @media (max-width:500px) { #layerslider_1 { display:none !important; } .template-blog { display: block !important; } }
    .template-blog { display: none; }
    </style>

    Best regards,
    Elliott

    in reply to: Fullscreen slider flashes in IE #423183

    Hi!

    Not sure what it could be yet. Have you done any customizations? Let’s go ahead and try completely deleting Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest. You should be using version 3.1.3 after this instead of 3.1.2.

    Regards,
    Elliott

    in reply to: Shortcode to display catalog in LIST VIEW #423179

    Hey!

    That would take a lot of time and code and would have to be considered custom work.

    If it was me I would update the theme and use the product list element. It’s very similar so it could be styled to look like that.

    Our magazine shortcode also looks similar to that and you can display products with it.

    Regards,
    Elliott

    • This reply was modified 10 years, 10 months ago by Elliott.
    in reply to: Advanced Layerslider General Question #423176

    Hey!

    Hmm, I have not tested it myself. If it’s not working then you can copy the updated LayerSlider files into /enfold/config-layerslider/LayerSlider/ to overwrite the old version.

    Regards,
    Elliott

    in reply to: Portfolio grid images do not have equal size #423172

    Hey!

    Hmm, I’m not seeing it happen on my XAMPP setup. It’s hard to tell what could be happening without a link.

    Let us know when you go live and we’ll take a look. In the meantime you could try using some CSS like so.

    .grid-image img {
      min-height: 300px !important;
    }

    Best regards,
    Elliott

    in reply to: responsive grid container tweaks #423171

    Hi!

    I don’t see an easy way of doing that. It would take some javascript to move it’s position in the document. You would need to set the testimonial to the first column if you want it to display above the slider.

    You can use this CSS to adjust the margins of the testimonial.

    .avia-testimonial-wrapper, .avia-testimonial { margin: 0px !important; }
    

    Best regards,
    Elliott

    in reply to: Linking to Portfolio Categories #423166

    Hi Mike!

    Navigate to Dashboard > Enfold > Sidebar Settings and set the archive sidebar to “No Sidebar”.

    Cheers!
    Elliott

    in reply to: IMAGE WITH HOTSPOTS #423164

    Hi!

    You can edit the hotspot element and set the hotspot layout to “Blank Hotspot” and then add some CSS to a codeblock element in the page like so.

    <style type = "text/css">
    .av-hotspot-container-inner-wrap > .av-image-hotspot:nth-child(3) .av-image-hotspot_inner::after {
      color: black;
      content: "A";
      position: relative;
      right: 3px;
    }
    </style>
    

    To change the character that gets displayed in each hotspot. In the code above it sets the third hotspot to display the “A” character.

    Regards,
    Elliott

Viewing 30 posts - 8,371 through 8,400 (of 14,834 total)