Forum Replies Created
-
AuthorPosts
-
Hi Goodchild007!
You could zip up all of the documents and create a text link or use the button shortcode and link to the zip files that way. When the user clicks on the link the browser will download the zip files.
Regards,
ElliottHey suchfin!
It’s currently not possible. Your page is taking a long time to download on mobiles? Send us a link and we’ll take a look.
Be sure to optimize your images. Another good way to speed up a WordPress site is to use a caching plugin such as W3 cache or WP Supercache. A plugin such as BWP minify would help also in minifying the JS and CSS.
Cheers!
Elliott-
This reply was modified 10 years, 8 months ago by
Elliott.
Hey AvionicsSource!
That is using the grid row element. In the layout builder switch to the “Layout Elements” tab and drag the grid row to your content. You can then create two cells and place the contact form in one and your text in the other.
You can edit each cell and set a custom background to give it that look.
Cheers!
ElliottJune 4, 2015 at 10:00 pm in reply to: Wide Header does not work with Transparent Header setting #454758Hi Heathcliffe!
Make sure your using the latest version of Enfold, 3.2, and deactivate all plugins while testing.
If that does not help then send us a link to your page and we’ll take a look. Keep in mind that when using the transparent header your page content will be displayed at the very top of the page with no padding or margins so it looks like it will be behind the header.
Regards,
ElliottJune 4, 2015 at 9:56 pm in reply to: When you change variation from the dropdown menu the image disappears #454756Hi profumopuntoit!
Did you make sure to upload images for the different variations? If so and it’s still not working then let’s try following.
1. Deactivate all plugins except Woocommerce.
2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.
Also make sure that WordPress and Woocommerce are updated.
If your still having problems after doing the above steps then send us a WordPress login and we’ll take a closer look.
Regards,
ElliottHi newinceptions!
Set your footer column layout to 3 or 4 columns in Dashboard > Enfold > Footer and then drag the “Custom Menu” widget to whichever column you want in Dashboard > Appearance > Widgets.
Let us know when your done with that and we’ll give you some CSS to style it.
Regards,
ElliottHi Matt!
The posts have no relations to pages so the breadcrumbs will display the categories and post title. It will also display the blog page if you have one set.
Pages on the other hand have a parent and child relationship to each other so the parent pages will display in the breadcrumbs.
Best regards,
Elliott-
This reply was modified 10 years, 8 months ago by
Elliott.
June 4, 2015 at 9:39 pm in reply to: Avia editor incompatible with the WooCommerce Custom Product Tabs Lite plugin #454747Hi wipple!
Have you contacted the plugin author?
Not sure if we will be able to help you out here but send us a WordPress login and we’ll take a look.
Best regards,
ElliottJune 4, 2015 at 9:39 pm in reply to: Avia editor is blank — already tried clearing cache in browser and on website #454746Hey abskevin!
Make sure your using the latest version of Enfold, 3.2, and deactivate all plugins while testing.
The login is not working for me, is the information correct?
Cheers!
ElliottHi Daniela!
You have it set to #fafafb and that is what I’m seeing when I view your site. Do you mean your wanting to change the iconbox backgrounds when they are inside the alternate content sections? If so then add this to your custom CSS.
.alternate_color .iconbox_content { background: white none repeat scroll 0 0 !important; }Regards,
ElliottHey johnniemeijer!
Your slideshow has a few images around 150KB – 200KB. Are you saying you want to make it so the slideshow only displays on desktops and not mobiles?
Best regards,
ElliottHey!
That is in case you want to save your customizations that you have done to the theme files. What I would do is zip it up and save it to your desktop. You can find that area in your WordPress theme directory, /wp-content/themes/.
Regards,
ElliottHey finchkelsey!
Yes, the page that you select for your shop page in the Woocommerce settings cannot be edited. If you want to create a custom product page then you would just create a new page and add the product grid / list elements to it, etc etc.
Best regards,
ElliottJune 4, 2015 at 6:27 pm in reply to: Do New Layout Builder Templates for Single Product Apply to All Products #454673Hi!
If you just want to edit the products in the default editor then you’ll need to play around in the /enfold/config-woocommerce/config.php file and move the filters around, etc etc.
Take a screenshot and highlight exactly what your trying to do and we’ll see if we can help you out.
Regards,
ElliottHi Dyana!
So there are more categories there that are not displaying? Make sure that you select all of the categories when editing the shortcode. Also make sure that you have enough posts selected to display on the page.
For example if you only set it to display 5 posts per page and it loads the last 5 posts which are all assigned to the “Branding” category then the other category filters will not display because there are no posts in the current page to filter.
Best regards,
Elliott-
This reply was modified 10 years, 8 months ago by
Elliott.
June 4, 2015 at 6:19 pm in reply to: Need only one of my webpages not show up as a menu item on my website #454668Hey!
So basically your just wanting to remove the link to this page in your menu correct? You’ll need to navigate to Dashboard > Appearance > Menu and create a new menu for complete control over what links get added to the menu.
Cheers!
ElliottHi mrshaffly!
I viewed your link and in the bottom left it looks like your using the catalogue element. It seems to be displaying fine for me. Can you take a screenshot and highlight what your trying to do?
Regards,
ElliottHey!
You could reduce the padding a bit more. Try 2px.
#top .av-subnav-menu > li > a { padding: 0px 2px !important; }Best regards,
ElliottHi sooter8!
I didn’t test this out but try it instead.
add_filter('wp_nav_menu_args', 'my_wp_nav_menu_args_filter'); function my_wp_nav_menu_args_filter($args) { if ($_COOKIE['division'] == 'west' && $args['theme_location'] == 'avia' ) { $args['menu'] = 'West Main Menu'; } return $args; }“avia2” and “avia3” will target the secondary and footer menus.
Regards,
Elliott-
This reply was modified 10 years, 8 months ago by
Elliott.
June 4, 2015 at 5:50 pm in reply to: Remove Single Shortcodes Elements – in both 'Post' and 'Page' #454637Hey!
As for changing them depending on the user it’s possible but I don’t think it would be feasible to do it in a child theme though. Not unless you were wanting to hide them with CSS. In that case you could try something like this.
add_action( 'admin_print_styles', 'enfold_customization_admin_css' ); function enfold_customization_admin_css() { echo '<style type = "text/css">'; echo '#mceu_63 { display: none; }'; echo 'a[href="#avia_sc_button"] { display: none; }'; echo '</style>'; }That code would hide the button shortcode in the layout builder and in the magic wand icon. If you wanted to hide it only for certain users then you could try using the “current_user_can” conditional, https://codex.wordpress.org/Function_Reference/current_user_can, to check if the user has certain capabilities.
Regards,
Elliott-
This reply was modified 10 years, 5 months ago by
Elliott.
June 4, 2015 at 5:36 pm in reply to: Website is extremely slow when navigating from page to page #454622Hi!
Not sure what we could do to troubleshoot that. Try loading a different theme to see if you get the same problems.
As for the frontend of your site it’s loading in 1.26 seconds on my end which is pretty fast. All of the images look good and there is only 600KB to download so I doubt it could be optimized any further.
As for the CPU load it sounds like it’s a problem with the server. It might be best to hire someone to make sure there are no problems with the server since your self hosting.
Regards,
Elliott-
This reply was modified 10 years, 8 months ago by
Elliott.
Hey!
I don’t have an iPad or iPhone to test on but it looks like your using columns with the image element inside. There shouldn’t be any hover effects on mobile devices because you cannot hover on them.
Instead the caption will display beneath the image on mobiles instead of on hover like on desktops.
Regards,
ElliottHi sarahrose!
You can do this, http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/, to add custom CSS to the tabs element.
The CSS you would use would look something like this.
.tab { background: white !important; }Or you can drag a codeblock element to your page and add this inside.
<style type = "text/css"> .tab { background: white !important; } </style>Regards,
ElliottHey george!
Your site is in maintenance mode it looks like. Go ahead and take that off or send us a login so we can check.
When you view your site on mobiles the table widths will be set to use 100% of the width of the page. Are you trying to make it so the table width is a px value and you can scroll around the page?
Best regards,
ElliottHey Jakob40004000!
Make sure to remove the demo bar when linking to the demo pages.
It sounds like your wanting to change the blog style to make it use the small pic preview. You can do this in Dashboard > Enfold > Blog Settings. You can also change the single post featured image size there as well.
Cheers!
ElliottHey jenki!
So in your product category archives the add to cart button is missing? Can you send us a link to your page so we can take a closer look?
Also try deactivating all of your plugins except for the main Woocommerce plugin to see if they are causing problems.
Best regards,
ElliottHey screenroot-admin!
Your talking about the easy slider and the icon list correct? It appears to be displaying correctly on my end. Are you wanting it to stay in two columns on smaller screens instead of combining into one column? If so then you can do this with the grid row element instead of the color section.
Cheers!
ElliottHey Novinit!
I have not used it before but perhaps this would work for you, https://wordpress.org/plugins/wp-supersized/.
Regards,
ElliottHey!
I wouldn’t worry about that. I think it’s just saying to do that since your using 3 columns there and it thinks you could use smaller images in that space. What would happen if you decided to use 2 columns though? You might see some loss of quality. If you absolutely must change it then you could try reducing the resize dimensions around line 125 in the /enfold/functions.php file.
What you can do though is install a caching plugin such as W3 total cache or WP Supercache. A minify plugin such as BWP minify would help as well. Those are the best options for optimizing a WordPress site.
Best regards,
ElliottJune 3, 2015 at 5:47 pm in reply to: Several elements disappear … maybe coinciding with an automatical WP upgrade #453978Hey!
@Nic_007, You have the header set to transparent so the content is going to display beneath it. In your Philosophie page you’ll want to set the header style option to “No transparency”.
@mariuszkos, @macrunner, Please send us links to your pages so we can take a look. Make sure your using the latest version of Enfold, 3.1.5, and deactivate all plugins while testing.Regards,
Elliott-
This reply was modified 10 years, 8 months ago by
Elliott.
-
This reply was modified 10 years, 8 months ago by
-
AuthorPosts
