Forum Replies Created
-
AuthorPosts
-
Hi 2funky!
You said this does not happen in a “new clean” installation? That means you have done some customization to the theme files?
Best regards,
ElliottHi garyrgi!
It should not be displayed unless you have something in your cart. Try logging out, clear your browser cache, and then log back in to see if it disappears.
Also try publishing the page to see if that has something to do with it.
Regards,
ElliottMarch 17, 2015 at 8:51 pm in reply to: Content linking to other pages without hyperlinks attached #413213Hey Harri!
In the second message box look through your code to make sure there are no typos and that you are closing the link properly. If your still having trouble then paste the code your using here and we’ll take a look at it.
Regards,
ElliottHey dmoravec!
You could try adding the debug view, http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/, and then surround whatever code you need with those tags.
Best regards,
ElliottHey Manuel!
1. There just isn’t enough space there for that long word. If you add a space or a hyphen in the middle of the word then it should break to the next line. I think that is the only way to force it to break. Or you could try reducing the font size or the column size to make it fit.
2. If your wanting to force them to 4 columns then add this to your custom CSS.
#kreis-icon .flex_column { clear: none !important; float: left !important; margin: 10px !important; width: 22% !important; }3. Drag a codeblock element to your page and add this inside.
<style type = "text/css"> #top .no_margin.av_one_fourth { clear: none !important; float: left !important; width: 24% !important; } </style>4. Add this to your custom CSS.
.responsive #top .slideshow_caption .avia-caption-content { width: 50% !important; }Regards,
ElliottHi!
It sounds like you are wanting to use our “Fullwidth submenu” element instead. Try adding that to one of your posts and you’ll see that it spans full width and also sticks to the top of your page as you scroll down.
You can do that and then set your header to not be “sticky” anymore in Dashboard > Enfold > Header > Header Behaviour.
Let us know when your done with this and we’ll give you some CSS to make the fullwidth submenu look more like your regular menu.
Regards,
ElliottHi Diego!
I would try asking this in the WooCommerce support. I found this though which looks very similar to what your trying to do, http://docs.woothemes.com/document/add-a-surcharge-to-cart-and-checkout-uses-fees-api/.
Cheers!
ElliottHey!
1. I’m not sure I understand either. Can you take a screenshot and highlight what your trying to do? Also send us a link to the exact page.
2. It’s possible but would have to be considered custom work. It would be best to hire a freelancer to help you out with this customization.
Best regards,
ElliottHey!
They should be working now. Try clearing your browser cache and check again.
Make sure that the portfolio items base and category base are not the same.
Regards,
ElliottHey Roine!
Try this out.
add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { $content .= avia_social_share_links(array(), false, '', false); $content .= ''; return $content; }Regards,
ElliottMarch 17, 2015 at 6:51 pm in reply to: Assign the Transparent header to a custom category archive #413166Hey Mercheric!
Send us a link to your page and we’ll give you some CSS to use.
Best regards,
ElliottHey opvab!
Add a URL around the image like so.
<a href = "URL to your youtube video"> <img src = "URL to your image" /> </a>And it will open up the video in a popup when you click on it. You need to make sure the youtube URL look like this though.
https://www.youtube.com/watch?v=3sVt-BBC7PEUsing youtu.be will not work.
Regards,
ElliottHey Apollo87!
If WordPress can handle it then Enfold can. As for plugins I would look into Buddypress, https://buddypress.org/.
Cheers!
Elliott-
This reply was modified 10 years, 10 months ago by
Elliott.
March 17, 2015 at 6:31 pm in reply to: Enfold 3.1: Blog entry on the frontpage appers as "read more" instead of full #413151Hi aebli!
Your other pages seem to be displaying fine. Are you sure you do not have a custom excerpt set for this post? Go ahead and send us a WordPress login and we’ll take a closer look.
Regards,
ElliottMarch 17, 2015 at 6:29 pm in reply to: Enfold 3.1: Text size does not change using Advanced Layout Editor #413149Hey aebli!
For the captions try adding this to your custom CSS.
p.wp-caption-text { font-size: 22px; }Cheers!
ElliottMarch 17, 2015 at 6:26 pm in reply to: Margin bug when using Fullscreen Slider with 2 buttons #413146Hey Edgars!
It doesn’t seem to be happening on our demo. Can you send us a link to your page so we can take a look?
Best regards,
Elliott-
This reply was modified 10 years, 10 months ago by
Elliott.
Hi akmhou!
Go ahead and update to Enfold 3.1 to fix it. It looks like you did quite a bit of customization so I’m not sure what version your using.
Cheers!
ElliottHi dvcalle!
Is it your contacto page? I didn’t see any errors and the form seemed to send successfully. Try clearing your browser cache or view in a different browser after deactivating all plugins.
Best regards,
ElliottHi Jameel!
The closest option we have for that is the gallery preview, http://kriesi.at/themes/enfold/shortcodes/gallery/.
Other than that you might be able to find a plugin that has this functionality, https://wordpress.org/plugins/.
Regards,
ElliottHi apremierdj!
Does nextgen gallery have it’s own lightbox feature? If so then there is probably a setting to disable it so try that out.
If not then send us a link to your page and deactivate all of your other plugins and we’ll take a look.
Cheers!
ElliottHi GIEKApl!
Hmm, I’m not sure what’s going on there in your screenshot. Can you send us a link to your page so we can get a better idea?
Cheers!
ElliottHey!
Download our child theme kit if your not using a child theme already, http://kriesi.at/documentation/enfold/downloads/, and then add this to the bottom of the child theme functions.php file.
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Cookie'] = 'Cookie:400'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Cookie'] = 'Cookie:400'; return $fonts; }Next navigate to Dashboard > Enfold > Advanced Styling and edit the main menu links and set the font to “Cookie” (it should be near the bottom).
Best regards,
Elliott-
This reply was modified 10 years, 10 months ago by
Elliott.
Hi!
You would use this CSS.
.your-class .avia-menu-text { color: blue !important; background-color: red !important; } .your-class .avia-menu-text:hover { color: red !important; background-color: blue !important; }If I am misunderstanding then please send us a link to the exact page and take a screenshot highlighting what your trying to do.
Regards,
Elliott-
This reply was modified 10 years, 10 months ago by
Elliott.
Hi!
I don’t think there is a way for it to “dynamically fill the screen”. You could try asking the LayerSlider developers.
You could keep doing it like how your currently using the media queries and then do something like this.
.avia-layerslider, .avia-layerslider * { height: 400px !important; }But it’s going to stretch and distort the images and probably not have the effect your wanting.
Cheers!
ElliottMarch 17, 2015 at 4:41 pm in reply to: Blog pages wants to be my Home page (has mind of it's own) #413077Hey jenna_atkinson!
You setup a static page in Dashboard > Settings > Reading? If so then remove that. You’ll need to setup the home and blog pages in Dashboard > Enfold > Theme Options and then edit the pages you have set and change their sidebar layout, etc etc.
Cheers!
ElliottHey patgrafch!
Updating Enfold to 3.1 should fix it. If not then try deactivating all of your other plugins and send us a WordPress login.
Best regards,
ElliottHi!
Your getting a bunch of 404 not found errors on the gravityform scripts. Try deleting the plugin from your WordPress plugin directory and then install a fresh copy and check to see if it has correct permissions.
You’ll notice it’s doing the same in the default theme so it’s not an Enfold issue. It would be best to contact gravityforms support if the updated permissions are not working.
Cheers!
ElliottMarch 17, 2015 at 4:16 pm in reply to: How to make hover text on hot spot appear when the hot spot loads? #413040Hi!
Hmm, it looks like you have to hover over it at least once so the tooltip gets initialized. That’s going to be more difficult.
If you use just this.
.avia-tooltip { display: block !important; opacity: 1 !important; visibility: visible !important; }Then it should stick on the page after you hover over it once.
Cheers!
ElliottMarch 17, 2015 at 4:09 pm in reply to: Visual Editor has no function in Internet Explorer 9 after WPML activation #413030Hi!
Hmm, not sure what it could be. I didn’t see any errors or anything out of the ordinary. I would consider updating IE or contact WPML support to see if they have any idea on what it could be.
Cheers!
ElliottHi Jan!
If you resize your screen then the fullwidth easy slider should resize itself and the images inside to cover the whole screen. If that’s not happening on your end then send us a link and we’ll take a look.
Cheers!
Elliott -
This reply was modified 10 years, 10 months ago by
-
AuthorPosts
