Forum Replies Created
-
AuthorPosts
-
Hey!
I don’t see the slider when I view your homepage. If you have removed it then add it back in so we can check to see what’s happening. Or if it’s on another page then send us a link to the exact page.
Regards,
ElliottHi!
Send us a link to your page and take a screenshot highlighting exactly what your trying to do and we’ll check to see if it’s possible.
Best regards,
ElliottHi!
It seems to be working fine on my XAMPP setup. Can you please leave the code in so we can check it on your site? Every time I visit your site you have removed it so I cannot see what the problem is.
Best regards,
ElliottHi!
We might see an option get added in a future update. Do the fix again and we’ll give you CSS to hide the one on desktop.
Cheers!
ElliottHi!
When you write your reply click on the “img” button and insert the URL to your image. You can use an image hosting service such as imgur.com to upload the image.
Regards,
ElliottSeptember 14, 2015 at 3:27 pm in reply to: Log in and log out link in the main menu for woocommerce #502810Hey!
If your using the WordPress menus in Dashboard > Appearance > Menus then switch it to this.
add_filter( 'wp_nav_menu_items', 'add_loginout_link', 40, 2 ); function add_loginout_link( $items, $args ) { if (is_user_logged_in() && $args->theme_location == 'avia') { $items .= '<li><a href="'. wp_logout_url() .'">Uitloggen</a></li>'; } elseif (!is_user_logged_in() && $args->theme_location == 'avia') { $items .= '<li><a href="'. site_url('wp-login.php') .'">Inloggen</a></li>'; } return $items; }“avia” is the name for our primary menu area. You can use “avia2” or “avia3” for header and footer menu areas.
Best regards,
Elliott-
This reply was modified 10 years, 4 months ago by
Elliott.
Hey!
I saw it on my end though it went away after the first view. I did not see it on our demo at all though. Let’s try the following.
1. Deactivate all plugins.
2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.
What happens when you switch to one of the demo sliders?
Best regards,
ElliottSeptember 14, 2015 at 3:16 pm in reply to: Remove specific blog posts from and search, but only visibly by direct link #502798Hi!
You can try using the “avf_magazine_filter” on line 255 in the /enfold/config-templatebuilder/avia-shortcodes/magazine.php file for that. Are you trying to exclude these posts from all queries?
Cheers!
ElliottSeptember 14, 2015 at 3:11 pm in reply to: Varying layout by browser – behaviour not dynamic #502795Hi!
Is IE updated and compatibility view turned off? I didn’t see the issue on my end.
Best regards,
ElliottHey!
It’s hard to tell because you have padding on each section.
#input { padding-top: 150px; } #netbanking { padding-top: 150px; } #tools { padding-top: 150px; } #instelling { padding-top: 150px; }Can you remove that so we can check? Also, you said it goes away when all plugins are deactivated? Can you reactivate them one by one to see which plugin is causing it?
Cheers!
ElliottHi liquidsociety!
You can customize the way your site is printed with the print stylesheet in /enfold/css/print.css.
1. Not sure if that will be possible but send us a link and we’ll take a look.
2. Add this to the print stylesheet.
.header_bg { background: black !important; }3. Are you wanting to hide it when someone prints your page?
Cheers!
Elliott-
This reply was modified 10 years, 4 months ago by
Elliott.
Hi liquidsociety!
We do not have any options set up for this yet and it would take a lot of time and code to implement them so it would have to be considered custom work for now.
Consider creating 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.
Cheers!
ElliottSeptember 14, 2015 at 2:53 pm in reply to: Add custom field via child theme for portfolio item #502772Hi kunzi!
Add this to your child theme functions.php file.
add_filter( 'avf_portfolio_cpt_args', 'enfold_customization_portfolio_fields', 1 ); function enfold_customization_portfolio_fields( $args ) { $args['supports'] = array( 'title','thumbnail','excerpt','editor','comments', 'custom-fields' ); return $args; }Regards,
ElliottHey depietrijojo3!
It looks like it’s loading another style from jQuery tools, probably from a plugin. Let’s try the following.
1. Deactivate all plugins and clear your cache.
2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.
Regards,
ElliottHey mleite1!
You can add a white space / separator element on top or below them and set it’s height to a custom pixel value to create white space between elements.
Best regards,
ElliottHey katana!
Navigate to Dashboard > Appearance > Widgets and if you have Woocommerce installed then there should be a widget area called “Shop Overview Page” which you can use to change the widgets on your shop page.
Best regards,
ElliottSeptember 13, 2015 at 3:45 pm in reply to: What is the way to add read more all the articles ? #502335Hi selic!
Please see here, https://kriesi.at/support/topic/blog-posts-excerpts-enfold/#post-125278.
Cheers!
ElliottSeptember 13, 2015 at 3:38 pm in reply to: Why is the Enfold Theme not responsive as it is advertised? #502334Hi vad1mo!
That’s because your using a grid row element. Use a color section and add 1/3 + 1/3 + 1/3 columns inside it to have them stack on top of each other.
Best regards,
ElliottHey mariocirillo!
See the “Moving directories on your existing server” here, https://codex.wordpress.org/Moving_WordPress.
Best regards,
ElliottHi vemaybayanz!
Send us a link to your page with the category link and we’ll take a look.
You can try deactivating all plugins and create a copy of your .htaccess file and then delete it from your server before saving your permalinks again in Dashboard > Settings > Permalinks. Perhaps your using a custom permalink structure that has a typo in it? If so then select the “Post name” or “Default” structure and save to see if that fixes it.
Regards,
ElliottHi Paul!
When you edit the color section background set the “Background Repeat” option to “Stretch to fit”.
Cheers!
ElliottHey lucasvrooij!
So the next / prev buttons used to cycle through the portfolio posts, your trying to place them inside the page content instead of hovering on the sides?
You would have to add them manually, https://codex.wordpress.org/Function_Reference/previous_post_link.
Probably in the /enfold/includes/loop-portfolio-single.php file around line 51.
Best regards,
ElliottHey!
Surround your code with this so it only gets applied on larger screens.
@media screen and (min-width: 767px) { }If your still having trouble then send us a link to your page so we can take a look.
Regards,
ElliottHey superbikecoach!
I haven’t tested on that version of PHP but I don’t think Enfold should have any issues. Make sure to create a backup first.
Regards,
ElliottHey vnlotx!
If you do not want the search to display in the menu then there is an option for removing it in Dashboard > Enfold > Header > Extra Elements.
Cheers!
ElliottHey!
Add this.
.av-subnav-menu > li:last-child { top: 1px; } .av-subnav-menu > li { top: -7px; }Cheers!
ElliottHey!
What if you had more than one category assigned to the post?
Cheers!
ElliottHi ploughon!
Can you send us a link to google search results where they are displaying?
Best regards,
ElliottHi!
Hmm, try contacting your hosting provider and let them know about this. I found a topic where someone suggested they were missing a PHP extension called mbstring, http://stackoverflow.com/questions/14254943/mbstring-php-and-mb-strimwidth-issue.
Cheers!
ElliottHey!
Can I get a bit of custom code to make the last row only a specific height please.That is what the first line in my previous code does.
.pricing-table > li:nth-child(5) { min-height: 85px; }Change the 85px to whatever you need to change it’s height.
Cheers!
Elliott -
This reply was modified 10 years, 4 months ago by
-
AuthorPosts
