Forum Replies Created

Viewing 30 posts - 1,981 through 2,010 (of 14,834 total)
  • Author
    Posts
  • in reply to: Opacity increase on header #546093

    Hey!

    It shouldn’t be completely clear when you set it transparent. There is also a “glassy transparent” style which will make it even more opaque.

    You can change the opacity with this CSS.

    .header_color .header_bg {
        background-color: rgba(255,255,255,0.4) !important;
    }

    But that’s not going to do anything because there is nothing behind the header.

    Regards,
    Elliott

    Hi slui!

    Your screenshot is not displaying for me, which button is it?

    Is it the “kids bowl free” button? I see it on mobile but not on desktop. What is the CSS your using?

    Regards,
    Elliott

    in reply to: removing php session #546087

    Hi!

    1. No, not that I know of. You could just leave it off if you wish.

    2. Yes.

    3. For example when you use the portfolio grid shortcode and click on one of the portfolio posts, they will not have the parent page displayed because they have no idea where you used the portfolio grid shortcode at.

    Cheers!
    Elliott

    Hey!

    The demo page that you linked to is using the sidebar navigation feature. You can turn it on / off in Dashboard > Enfold > Sidebar Settings > Page Sidebar Navigation. The pages must all be children of the same parent page for them to display.

    Or you can create your own menu in Dashboard > Appearance > Menus and use the “Custom Menu” widget to display it in a sidebar.

    Regards,
    Elliott

    in reply to: Place a column X pixles/procentage from the top #546084

    Hi!

    Go ahead and take a screenshot and highlight exactly what your trying to do so we can get a better idea.

    Regards,
    Elliott

    in reply to: Figcaption on gallery masonry item #546082

    Hey!

    When you choose the images in the Masonry Gallery you have the option of setting a title and alt text. The text that gets displayed in the lightbox there is the title. If you want to switch that to the alt text then try opening up /enfold/config-templatebuilder/avia-shortcodes/helper-masonry.php and change line 231 from this.

    $img_html  = '<img src="'.$attachment[0].'" title="'.$title.'" alt="'.$alt.'" />';
    

    To this.

    $img_html  = '<img src="'.$attachment[0].'" title="'.$alt.'" alt="'.$alt.'" />';
    

    Best regards,
    Elliott

    in reply to: Row Slider #546080

    Hi!

    That’s all we have. You might be able to find a plugin to use.

    I think the post slider should work for you though. Take a screenshot and highlight how your trying to style it and we’ll see if we can get you some CSS to use or not.

    Best regards,
    Elliott

    • This reply was modified 9 years, 7 months ago by Elliott.
    in reply to: sidebar sub pages not showing #546079

    Hi!

    Are you sure you have the “Page Sidebar Navigation” option checked in Dashboard > Enfold > Sidebar Settings? And your sure there are other child pages beneath “London”?

    Regards,
    Elliott

    in reply to: Single image lightbox show navigation arrows #546078

    Hey frenchfries!

    It’s only opening up one image in lightbox for me. Did you get it sorted?

    If your still having trouble then take a screenshot and highlight what your seeing so we can get a better idea.

    Regards,
    Elliott

    in reply to: Enable mini cart counter with child theme function #546077

    Hi borkent!

    What is the code your using? We may be able to convert it to work in a child theme.

    Best regards,
    Elliott

    in reply to: Problem creation portfolio #546076

    Hey ffdesigner!

    It looks like your using Enfold 3.3.1. Update to the latest version, 3.4.4, and deactivate all plugins while testing.

    If your still having trouble then send us a WordPress login and we’ll take a look.

    Regards,
    Elliott

    in reply to: Formatting Upcoming Events Plugin Addition ? #546074

    Hi spiderlaundry!

    That would depend. Can you send us a link to your page and take a screenshot highlighting the changes your trying to do?

    Regards,
    Elliott

    in reply to: Change color of dashed line between testimonials #546073

    Hey 1039 Online!

    Add this to your custom CSS.

    #top .avia-testimonial {
        border-color: red !important;
    }

    Regards,
    Elliott

    in reply to: Opacity increase on header #546072

    Hey rmavila!

    When you edit your page look on the right hand side and you’ll see the layout options. You can set the header to transparent there.

    Best regards,
    Elliott

    in reply to: Custom main content background image for each page #546060

    Hi!

    Use this instead.

    <style type = "text/css">
    #main { background: url("URL to your image") !important; }
    </style>
    

    Regards,
    Elliott

    Hey!

    Hmm, I did some testing on my XAMPP setup and I could only get it to work with this for some reason.

    if(!function_exists('avia_post_nav'))
    {
    	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['prev'] = get_previous_post(true, $settings['excluded_terms'], 'product_cat');
    	            $entries['next'] = get_next_post(true, $settings['excluded_terms'], 'product_cat');
    	        }
    	        else
    	        {
    	            $entries['prev'] = get_previous_post($settings['same_category']);
    	            $entries['next'] = 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;
    	}
    }

    You can paste that into the child theme functions.php file.

    Cheers!
    Elliott

    in reply to: Changes not saving #546051

    Hi!

    Your getting a few javascript errors. I deactivated your plugins and one of them went away.

    Try completely deleting Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    Cheers!
    Elliott

    in reply to: Html not displaying in product description area #546049

    Hey!

    Can you send us a link to the product again? It’s giving me a 404 now.

    Regards,
    Elliott

    in reply to: Portfolio shortcode: display same category entries #546048

    Hey Crimson-Guard!

    It’s bordering on custom work so it would be best to hire a freelancer to help you out. If you want to try and work through it on your own then I think the area your looking for is around line 270 in the /enfold/config-templatebuilder/avia-shortcodes/portfolio.php file.

    But of course if you edit the shortcode file then it will effect everywhere you use the shortcode so you would need to add another parameter to differentiate between them.

    It would probably be best to just add the portfolio shortcode in the page content manually.

    Cheers!
    Elliott

    in reply to: Header of single post #546044

    Hey!

    I’m sorry but I’m not sure I understand. Can you take a screenshot and highlight what your trying to do so we can get a better idea?

    Cheers!
    Elliott

    in reply to: Article preview #546041

    Hey!

    Go ahead and add the sidebar to the page and the CSS and it should go back to the left aligned style.

    Regards,
    Elliott

    in reply to: Footer Höhe #546038

    Hey!

    Try this.

    #footer .image-overlay { display: none !important; }
    

    If that is not working either then please take a screenshot and highlight exactly what your trying to do so we can get a better idea.

    Best regards,
    Elliott

    in reply to: Inhalte gehen verloren #546036

    Hi!

    That’s a different issue. Just make sure that when you type HTML out that you close each element properly.

    <div></div>
    <strong></strong>
    <br />
    etc etc
    

    Child themes are for when you want to do customizations to the theme files and want them to be saved between updates.

    Best regards,
    Elliott

    Hey!

    So your just trying to display a grid of regular posts assigned to the “news” category correct? You do not need to use portfolios for this. Just drag the blog posts element to your page content and set it to use the grid style in the settings.

    Or just navigate to Dashboard > Enfold > Blog Layout and set it to use the grid style.

    Best regards,
    Elliott

    in reply to: removing php session #546028

    Hi ckwiat!

    Breadcrumbs will have issues. Sessions are for saving data for each user when they visit your site for that “session”. We use that for the breadcrumbs to know which page you were on before, etc etc.

    It’s a problem with the server so I would contact your hosting provider. See here for more info, https://kriesi.at/support/topic/warning-session_start-function-session-start-help-asap-please/.

    Cheers!
    Elliott

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

    Hi IBTON!

    Can you send us a link to your page and take a screenshot highlighting what your trying to do?

    If your just trying to display links to your categories then you can use the “Categories” widget in Dashboard > Appearance > Widgets.

    Cheers!
    Elliott

    in reply to: Website Pages Dont save #546023

    Hi mogammad!

    You’ll want to update Enfold to the latest version, 3.4.4. Be sure all plugins are deactivated while testing.

    If your still having trouble then send us a WordPress login and we’ll take a look.

    Regards,
    Elliott

    in reply to: My web site is very slow #546021

    Hey DAFSCHOOL!

    I recommend this tool for optimizing your site. It gives you suggestions on how to fix issues.

    You’ll want to install a caching plugin and a plugin for minifying the JS/CSS such as BWP Minify.

    Also make sure that you crop / scale your images to a decent size before uploading.

    Best regards,
    Elliott

    in reply to: Masonry and showing complete images #546019

    Hi Ronaldgoudriaan!

    Your image sizes are way too big. It would be best to load a thumbnail instead of the full sizes. You can select a thumbnail to use in the Masonry settings.

    Best regards,
    Elliott

    in reply to: insert "Posted on:" in front of blog post dates #546015

    Hi JHU8ghsrr5!

    Add this to your custom CSS.

    time::before {
        content: "Posted on: ";
    }

    Best regards,
    Elliott

Viewing 30 posts - 1,981 through 2,010 (of 14,834 total)