Forum Replies Created
-
AuthorPosts
-
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,
ElliottDecember 2, 2015 at 8:46 pm in reply to: Possible Bug with Recognizing or Not Including CSS in Responsive Mode #546092Hi 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,
ElliottHi!
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!
ElliottDecember 2, 2015 at 8:38 pm in reply to: Related posts on the sidebar and the sidebar navigation for categories #546085Hey!
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,
ElliottHi!
Go ahead and take a screenshot and highlight exactly what your trying to do so we can get a better idea.
Regards,
ElliottHey!
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,
ElliottHi!
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.
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,
ElliottHey 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,
ElliottHi borkent!
What is the code your using? We may be able to convert it to work in a child theme.
Best regards,
ElliottHey 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,
ElliottHi 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,
ElliottHey 1039 Online!
Add this to your custom CSS.
#top .avia-testimonial { border-color: red !important; }
Regards,
ElliottHey 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,
ElliottHi!
Use this instead.
<style type = "text/css"> #main { background: url("URL to your image") !important; } </style>
Regards,
ElliottDecember 2, 2015 at 7:16 pm in reply to: Limit navigation between posts to one category of woocommerce product #546057Hey!
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!
ElliottHi!
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!
ElliottHey!
Can you send us a link to the product again? It’s giving me a 404 now.
Regards,
ElliottHey 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!
ElliottHey!
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!
ElliottHey!
Go ahead and add the sidebar to the page and the CSS and it should go back to the left aligned style.
Regards,
ElliottHey!
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,
ElliottHi!
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,
ElliottDecember 2, 2015 at 6:30 pm in reply to: "And where do you want to display the Blog?" use a portfolio entry not a page #546035Hey!
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,
ElliottHi 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.
December 2, 2015 at 6:18 pm in reply to: Related posts on the sidebar and the sidebar navigation for categories #546025Hi 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!
ElliottHi 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,
ElliottHey 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,
ElliottHi 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,
ElliottHi JHU8ghsrr5!
Add this to your custom CSS.
time::before { content: "Posted on: "; }
Best regards,
Elliott -
This reply was modified 9 years, 7 months ago by
-
AuthorPosts