Forum Replies Created
-
AuthorPosts
-
Hi Marcel!
Make sure your in the Visual editor and then hit enter to insert a line break, no HTML is required. It should also work in the advanced layout editor. If it’s not working then try deactivating your plugins.
Besides that I would have to have a WordPress login to take a closer look.
Regards,
ElliottHi!
You forgot to include the link.
Best regards,
ElliottHi!
Try this.
.my_button .avia-button:hover { background-position: 0px 80px; }
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hi ottingius!
There were too many lines and files changed to be able to list them all. You can download the update and view the version.txt to get an overview of what was changed.
I recommend using a child theme to do your customizations in so updating is easy, http://kriesi.at/documentation/enfold/downloads/.
Cheers!
ElliottHey!
Try adding this to your custom CSS.
.container select.wcml_currency_switcher { margin: 0px; } @media only screen and (max-width: 479px) { .wcml_currency_switcher { margin: 0px auto !important; } }
Cheers!
ElliottHi!
Probably just a cache issue. Let us know if you have any other questions.
Cheers!
ElliottHi docdocdoc!
Not sure what’s going on there. Go ahead and update to the latest version of Enfold (3.0.4) and if your still getting the problem then send us a WordPress login and we’ll take a closer look.
Best regards,
ElliottHey letobbe!
Try adding this to your custom CSS.
@media only screen and (max-width: 767px) { .av-submenu-container { position: fixed !important; } }
Best regards,
ElliottHi David!
Send us a WordPress login and we’ll take a look. Be sure to set your reply as private when including login information.
Best regards,
ElliottHey Hande!
The problem looks like it’s coming from a statcounter plugin. Try deactivating all of your plugins to see if the space beneath your socket goes away.
Or you can use this CSS to hide it.
.statcounter { display: none; }
Regards,
ElliottNovember 21, 2014 at 8:36 pm in reply to: Special headings DON'T WORK when they contain html tags #355533Hi lapajnea!
Is it this?
It seems to be displaying fine. What are you trying to make it do?
Regards,
ElliottHi felipe!
I think your referring to the Masonry sorting tags. What you can do is view the source code of your page and copy the sorting tags and then add them into a text widget.
Send us a link and we’ll take a look.
Regards,
ElliottHey!
It looks like you have some customizations going on there. Have you tried completely deleting your existing copy before downloading + uploading a fresh copy from themeforest? I think that should take care of it.
Also be sure to deactivate all plugins while testing and if your using a caching plugin then clear it’s cache.
Regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hi mikaelsv!
Add this to your custom CSS.
.news-excerpt > p { height: 39px; overflow: hidden; }
Best regards,
ElliottHi rpl_admin!
Yes you can do that. You may need to use the !important override sometimes. For example..
a { color: blue !important; }
As far as advantages go it may be easier to edit if you have a lot of CSS.
Regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hey!
Your getting a lot of javascript errors. Let’s try the following.
1. Deactivate all plugins.
2. Update Enfold to the latest version (3.0.4).
3. Switch to parent theme instead of your child theme and try saving the slideshow.
Best regards,
ElliottNovember 21, 2014 at 7:23 pm in reply to: bbPress – widget in the footer on forum root page has different font color #355453Hi schiou!
Can you send us a link so we can take a look? You can set your reply as private if you wish.
Regards,
ElliottNovember 21, 2014 at 7:19 pm in reply to: Disable Lightbox and Open Image in a new tab for product page #355446Hey!
For sorting them try this plugin out, https://wordpress.org/plugins/post-types-order/.
Regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hey slui!
Yes that is correct. Thumbnails will be displayed but when you click on the image and have it open in the magnific popup it will be the original. Let us know if you have any other questions.
Cheers!
Elliott- This reply was modified 10 years ago by Elliott.
Hi!
You can also change the sizes in /enfold/functions.php on line 109.
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries
Shortcodes should be stripped automatically from the excerpts. Perhaps your displaying the full content instead? Double check that you are displaying excerpts in the blog posts shortcode.
You can also set a custom excerpt when editing your post. If you do not see the excerpt field then click on “Screen Options” in the top right hand corner and check it to display.
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hi!
Try dragging a codeblock to your content and add this inside.
<script type = "text/javascript"> jQuery(document).ready(function(){ jQuery('.avia-content-slider .slide-image').attr('rel', 'lightbox'); jQuery('.avia-content-slider .slide-image').attr('href', jQuery('.avia-content-slider .slide-image img').attr('src') ); }); </script>
Cheers!
ElliottHey netarc!
It’s from the facebook like button. Try adding this to your custom CSS.
.entry-content span { height: 20px; overflow: hidden; }
Regards,
ElliottNovember 21, 2014 at 6:44 pm in reply to: enfold theme / woocommerce One Page Checkout plugin conflict #355413Hey ggee!
Not sure what could be going on there. There is supposed to be a button there called “Update Cart”. When the plugin is activated it removes the checkout buttons?
Cheers!
Elliott- This reply was modified 10 years ago by Elliott.
Hey!
Well since your changing it out to something else on mobiles then I think the easiest way would be to force it’s height to fit the container with CSS.
Try this.
.avia-layerslider .main_color, .avia-layerslider .main_color .av-hotspot-container { height: 620px !important; }
Cheers!
ElliottHi Stevenbegg!
You would just insert the video element into the post content and it will be picked up automatically.
Or are you talking about the color section video background?
If your still having problems then send us a WordPress login and we’ll take a look.
Cheers!
Elliott- This reply was modified 10 years ago by Elliott.
Hey netarc!
I only saw the like button in your link. How are you “publicating” the posts to facebook? Are you using a plugin?
You linked to a blog page and I couldn’t view the single posts view because you are hiding the title and read more. You’ll probably want to share just the single post and not the blog page if that’s how your doing it.
Cheers!
ElliottHey Julie!
I didn’t test this but it looks like you’ll want to change the code to this.
add_filter('avf_title_args', 'fix_single_post_title', 10, 2); function fix_single_post_title($args,$id) { if ( is_singular('post') || is_singular('your_post_type') ) { $args['title'] = get_the_title($id); $args['link'] = get_permalink($id); $args['heading'] = 'h1'; } return $args; }
And change ‘your_post_type’ to your custom post type slug.
Regards,
ElliottHi!
This is what we use to register all assets, http://codex.wordpress.org/Function_Reference/get_template_directory_uri. It’s supposed to check for SSL.
What happens when you activate just the parent theme and not the child theme? Also be sure to deactivate all plugins while testing.
If your still having problems then send us a WordPress login and we’ll take a look.
Cheers!
ElliottNovember 21, 2014 at 5:50 pm in reply to: Button shortcodes don't render when placed in a promo box that has button='no' #355343Hi champlainconted!
Let the promobox button display and then add this to your custom CSS to hide it.
.av_promobox > .avia-button-wrap { display: none !important; }
Regards,
ElliottNovember 21, 2014 at 5:42 pm in reply to: Fixed Object keeps disappearing on my homepage on mobile #355337Hey!
Your talking about the “Click to Call” element when seen in mobiles correct? It seems to be displaying fine for me. What device are you using? Can you take a screenshot and highlight what the problem is so we can get a better idea?
Regards,
Elliott -
AuthorPosts