Forum Replies Created

Viewing 30 posts - 3,991 through 4,020 (of 14,834 total)
  • Author
    Posts
  • in reply to: Set up related post #512408

    Hey vemaybayanz!

    You can setup the related entries in Dashboard > Enfold > Blog Layout. They should be set to display by default but you can disable them or change their style there.

    Best regards,
    Elliott

    in reply to: Give Plugin Button Style #512406

    Hey!

    Yes, you would target it with this though.

    button[type="button"] { background-color: #b0c4de !important; }
    

    Regards,
    Elliott

    in reply to: wc-ajax=get_refreshed_fragments very long load time #512403

    Hey!

    Your code is probably wrecking the AJAX scripts. If your having trouble with the load speed of Woocommerce then it would be best to contact them. We did not create the plugin so we have no idea what it could be.

    Regards,
    Elliott

    Hey!

    You can grab our emails by clicking on the “Send E-Mail” button beneath our avatars on this forum but it does not matter. You can use your own email. Go ahead and copy the login information here in a private reply so we all have access to it.

    Regards,
    Elliott

    • This reply was modified 9 years, 10 months ago by Elliott.
    in reply to: Changes in product page #512400

    Hi!

    Add this.

    .entry-summary .woocommerce-product-rating {
        top: 0px !important;
    }
    h1.entry-title, h1.entry_title { color: black !important; }
    

    Cheers!
    Elliott

    in reply to: Issue adding xml code in the text block.. #512397

    Hey gupshupdotme!

    In the codeblock element surround all of your code with pre or code tags.

    Regards,
    Elliott

    in reply to: Display of a table displays wron headlines on mobile #512393

    Hey!

    You can do this, https://kriesi.at/support/topic/is-it-possible-to-modify-files-in-enfold-child/#post-218226, to copy the shortcode file to your child theme so the edit stays between updates.

    Regards,
    Elliott

    in reply to: Portfolio next/prev buttons in page #512387

    Hey!

    Not sure what you mean by blank white pages. Perhaps you thought I meant to add it in? If you added it in again then that would have caused a duplicate function error hence white pages.

    I added the code back into your functions.php file and it’s working fine like it was on the 28th.

    Best regards,
    Elliott

    • This reply was modified 9 years, 10 months ago by Elliott.

    Hi!

    That’s going to take a lot of time and code and would have to be considered custom work. It would be best to hire a freelancer to help you out with this customization.

    If it was me I would just leave it alone until you write some more posts or set the amount of posts to display per page to something small like 2 – 3 so it fills up the pages faster.

    Regards,
    Elliott

    in reply to: Remove "Archive for Category:" from Archive Page Titles #512385

    Hey!

    That file is not a template file so it’s not going to work in your child theme. Instead you can copy the whole function since it’s wrapped in function_exists calls to your child theme functions.php file.

    
    	function avia_which_archive()
    	{
    		$output = "";
    
    		if ( is_category() )
    		{
    			$output = __('Archive for category:','avia_framework')." ".single_cat_title('',false);
    		}
    		elseif (is_day())
    		{
    			$output = __('Archive for date:','avia_framework')." ".get_the_time( __('F jS, Y','avia_framework') );
    		}
    		elseif (is_month())
    		{
    			$output = __('Archive for month:','avia_framework')." ".get_the_time( __('F, Y','avia_framework') );
    		}
    		elseif (is_year())
    		{
    			$output = __('Archive for year:','avia_framework')." ".get_the_time( __('Y','avia_framework') );
    		}
    		elseif (is_search())
    		{
    			global $wp_query;
    			if(!empty($wp_query->found_posts))
    			{
    				if($wp_query->found_posts > 1)
    				{
    					$output =  $wp_query->found_posts ." ". __('search results for:','avia_framework')." ".esc_attr( get_search_query() );
    				}
    				else
    				{
    					$output =  $wp_query->found_posts ." ". __('search result for:','avia_framework')." ".esc_attr( get_search_query() );
    				}
    			}
    			else
    			{
    				if(!empty($_GET['s']))
    				{
    					$output = __('Search results for:','avia_framework')." ".esc_attr( get_search_query() );
    				}
    				else
    				{
    					$output = __('To search the site please enter a valid term','avia_framework');
    				}
    			}
    
    		}
    		elseif (is_author())
    		{
    			$curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
    			$output = __('Author Archive','avia_framework')." ";
    
    			if(isset($curauth->nickname) && isset($curauth->ID))
                {
                    $name = apply_filters('avf_author_nickname', $curauth->nickname, $curauth->ID);
    		$output .= __('for:','avia_framework') ." ". $name;
                }
    
    		}
    		elseif (is_tag())
    		{
    			$output = __('Tag Archive for:','avia_framework')." ".single_tag_title('',false);
    		}
    		elseif(is_tax())
    		{
    			$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
    			$output = __('Archive for:','avia_framework')." ".$term->name;
    		}
    		else
    		{
    			$output = __('Archives','avia_framework')." ";
    		}
    
    		if (isset($_GET['paged']) && !empty($_GET['paged']))
    		{
    			$output .= " (".__('Page','avia_framework')." ".$_GET['paged'].")";
    		}
    
            	$output = apply_filters('avf_which_archive_output', $output);
            	
    		return $output;
    	}
    

    And edit it that way.

    Best regards,
    Elliott

    in reply to: Gallery images not displaying at size selected #512383

    Hey!

    That’s the size of the image itself, it’s still going to take up the whole width of the container because it’s CSS is set to 100% width. Are you wanting to change it so it does not take up the full width of the container? If you do so then it will not be centered anymore and it will look bad on small screens.

    Best regards,
    Elliott

    Hi!

    I’m not sure I understand. The page in your iframe is going to be another page on your site correct? If you edit that page and set it to use the blank template then the header, footer, etc etc, is not going to display.

    Send us a link to your page so we can get a better idea.

    Best regards,
    Elliott

    in reply to: Masonry Gallery Pagination links jump to top of page #512375

    Hey!

    Send us a WordPress login and we’ll take a closer look.

    Best regards,
    Elliott

    in reply to: Archive page layout changes #512373

    Hi!

    @Anton, I think your misunderstanding. If all your wanting to do is make the archives display in the grid layout then all you have to do is select the grid style in the Dashboard > Enfold > Blog Layout style settings. As said before the blog style applies to the archives as well.

    Cheers!
    Elliott

    in reply to: Enfold Accordion Slider #512371

    Hi!

    I would try out the “Featured Large” size in the accordion slider settings. Make sure your image is at least 1500 x 630 if you do not want it to be zoomed in / cropped.

    Regards,
    Elliott

    in reply to: Format box not showing in post. Enfold Version: 3.1.5 #512368

    Hi!

    If you want the post to display like a regular post then you will need to use the default editor. You can add additional elements to the post with the magic wand icon.

    If you want the post to display like a page and customize everything about it then you can use the advanced layout builder. You have to keep in mind the other users who might not want comments to display, who might not want the post meta to display, etc etc. I think in the future we will probably add more elements to the layout builder such as post meta but for now you will have to add that stuff in manually with the textblock / codeblock elements.

    Regards,
    Elliott

    in reply to: Show price in product page built with avia layout builder #512367

    Hi!

    We don’t have any shortcodes for that yet. You can create a feature request here, https://kriesi.at/support/enfold-feature-requests/, or use the Woocommerce add to cart shortcode.

    [add_to_cart id="99"]
    

    Cheers!
    Elliott

    Hey fgrippe!

    Send us a link to your page and we’ll take a look. You can set your reply as private if you wish.

    Regards,
    Elliott

    in reply to: ALB product list element ( Woocommerce Plugin Addition ) #512365

    Hey Shorty05!

    I don’t think that’s going to be possible. To answer your question though the file your wanting is the productslider.php.

    Best regards,
    Elliott

    Hi lucasvrooij!

    Your talking about the sub categories right? That is the correct behaviour. When you select a category the sub categories will be included as well.

    Regards,
    Elliott

    in reply to: avia post navigation on mobile #512354

    Hi Guenter!

    It’s because to display them you need to hover over the icons and on mobiles you cannot hover so it makes more sense to just hide them on mobiles (or other small screens).

    Regards,
    Elliott

    in reply to: Customize archive & tag cloud #512353

    Hey Noy!

    Add this to your custom CSS.

    .widget_archive li {
        border-bottom: 1px solid black;
    }
    .widget_tag_cloud a { color: red !important; }
    

    Regards,
    Elliott

    in reply to: Style the shopping cart in enfold #512352

    Hey codecreative!

    The area you highlighted in your screenshot is a strong tag but it has an inline style changing the color so it doesn’t seem like a CSS conflict. You can add this to your custom CSS to overwrite it.

    .dopbsp-wc-cart td, .dopbsp-wc-cart td strong {
        color: #888 !important;
    }

    Cheers!
    Elliott

    in reply to: I need help with the 2 important issues #512351

    Hey Mavraganis!

    1. You can set the header height in Dashboard > Enfold > Header. You can increase the font size of the menu items in Dashboard > Enfold > Advanced Styling.

    2. It sounds like a caching issue. Are you using a caching plugin? Does it do the same in all browsers? Perhaps some kind of browser add-on / extension is causing the issue.

    Cheers!
    Elliott

    in reply to: Too many images generated by Accordion Slider #512349

    Hi Costi!

    There are a couple of suggestions in this topic that you can try, https://kriesi.at/support/topic/how-to-disable-enfold-creating-media-image-sizes/.

    Regards,
    Elliott

    in reply to: Social icons issue #512346

    Hi Aristidis!

    Send us a link to your page and we’ll take a look. You can set your reply as private if you wish.

    Best regards,
    Elliott

    in reply to: How to turn Fullwith Easy Slider responsive? #512343

    Hi s_areal!

    1. They are responsive. The fullwidth easy slider when viewed on a smaller screen will adjust the height of the images so their aspect ratio is maintained and they do not need to zoom in or crop at all. Take a screenshot and highlight what your trying to do so we can get a better idea.

    2. There wouldn’t be any point for this. It’s a percentage of the screen height and screens come in all sorts of sizes so it’s still going to change for each user. If you want it to look the same on all screens then you will want to set a custom pixel value instead.

    Cheers!
    Elliott

    in reply to: Bullets icons not showing on mobile devices #512340

    Hey richardelectrix!

    Make sure your using the latest version of Enfold, 3.3.2, and that all plugins are deactivated while testing.

    If that does not help then send us a link to your page and we’ll take a look.

    Regards,
    Elliott

    in reply to: Prevent Duplicate posts on Single #512339

    Hi Rhodo!

    Try opening up /enfold/config-templatebuilder/avia-shortcodes/blog.php and around line 247 you should see this.

    'categories' 	=> '',
    

    Add this beneath it.

    'post__not_in' => array(get_the_ID()),
    

    Best regards,
    Elliott

    in reply to: Table formatting within an accordion #512336

    Hey richardelectrix!

    Send us a link to your page. You can set your reply as private if you wish.

    Regards,
    Elliott

Viewing 30 posts - 3,991 through 4,020 (of 14,834 total)