Forum Replies Created
-
AuthorPosts
-
Hey!
The login is not working for me.
Did you do some customizations to Enfold and now the advanced layout editor is not working?
Regards,
ElliottHey!
Try this out then.
.news_sort .av-masonry-image-container { background: transparent !important; }Cheers!
ElliottHi JPOsteen!
Hmm, sounds like your slider could be corrupted. If you create a new slider it lets you edit it’s settings fine? I would try deleting the slider and recreate it.
Cheers!
ElliottHey vailjazz!
Are you sure your using the latest version of Enfold 3.1.3? Double check that and send us a link to your page so we can take a look.
Cheers!
ElliottHey tremblayly!
I’m not sure what element your trying to change but you can target individual products by their ID.
.postid-3403 .someClass { }You could also drag a codeblock element to the product content and add some CSS in that way.
<style type = "text/css"> </style>Regards,
ElliottHey jgdoyle1!
You can move the caption title and content around with this CSS.
.avia-caption-title { position:relative; top:100px; background: rgba(255,255,255,0.2) !important; } .avia-caption-content { font-size: 12px !important; }Send us a link and take a screenshot highlighting exactly how your trying to change stuff around and we’ll take a look.
Best regards,
ElliottHi!
I don’t think we have anyone available. I would try the plugin authors and then maybe codeable, http://kriesi.at/contact/customization.
Cheers!
ElliottApril 21, 2015 at 8:25 pm in reply to: rollover large white line only appearing on a certain button in main nav. #432337Hi!
I’m not seeing it on my end. Let us know if your still having trouble.
Best regards,
ElliottHi tlchase!
I can’t think of a way to do that. Using the custom menu widget would probably be your best bet.
If you want to customize the existing page sidebar nav then it’s on line 1062 in /enfold/functions-enfold.php.
$args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'=>'menu_order, post_title');Here is the function that is used, https://codex.wordpress.org/Function_Reference/wp_list_pages. You can set the depth option to specify how deep you want the children to display but that doesn’t sound like what your trying to do.
Best regards,
ElliottHey gearouthere!
Are you using a plugin for those extra tabs? Or did you do a customization?
Regards,
ElliottHey!
Your content is outside of the wrap_all container so you must have an element in the page content that is not being closed properly. Send us a WordPress login and we’ll take a look.
Regards,
ElliottHey!
So your custom permalink structure is set to, /blog/%category%/%postname%/ ? If so then that is where the problem is. It will add /blog/ to every URL. Your most likely just wanting /%postname%/.
See here for how to setup your permalinks, https://codex.wordpress.org/Using_Permalinks.
Best regards,
ElliottHi stephenlevin!
I viewed your link but the images appear to be displaying fine.
See here for moving WordPress or changing the site URL, https://codex.wordpress.org/Moving_WordPress.
Cheers!
ElliottHey!
Try this.
@media screen and (max-width:900px) and (min-width:780px) { .article-icon-entry { display: inline-block !important; } }Regards,
ElliottHi!
It would take a lot of customization to implement. You might be able to find a google maps plugin that does this. There are quite a few out there, https://wordpress.org/plugins/search.php?q=google+maps.
But it would probably be easier to just enter the address and fetch the coordinates with our shortcode.
Best regards,
Elliott-
This reply was modified 10 years, 9 months ago by
Elliott.
April 21, 2015 at 6:04 pm in reply to: Google's Mobile Friendly Tester not detecting "Hide video on Mobile Devices?" #432214Hey!
Your currently getting a javascript error which is interfering with the testing tool. It’s also preventing your video from loading. Deactivating the BWP Minify plugin and let us know when your done so we can take another look.
EDIT: I went ahead and deleted your other post as it’s most likely related to this one.
Regards,
Elliott-
This reply was modified 10 years, 9 months ago by
Elliott.
April 21, 2015 at 5:55 pm in reply to: spacing malfunction between paragraphs and around photos – on 1 post #432208Hi!
This is the content displayed in your page.
<div class="yiv2284820914"><span class="yiv2284820914">text text text text text</span></div>And this is what it should look like.
<p>text text text text text</p>Best regards,
Elliott-
This reply was modified 10 years, 9 months ago by
Elliott.
April 21, 2015 at 5:54 pm in reply to: How to Add Scroll Down Button Capability to full width Easy Slider? #432202Hi!
It would take a lot of time and code to implement. Consider creating a feature request here, https://kriesi.at/support/enfold-feature-requests/, and if it gets enough interest we will probably see an option get added in a future update.
Cheers!
ElliottHi!
Perhaps she resized the images then or is using a different element. If you want to limit the height then you can drag a codeblock element to your page and add this inside.
<style type = "text/css"> .avia-fullwidth-slider, .avia-fullwidth-slider .avia-slideshow, .avia-fullwidth-slider .avia-slideshow-inner, .avia-fullwidth-slider img { max-height: 400px; } </style>But that will probably make the images look distorted.
Regards,
ElliottHi!
For the shortcode files you can do this, https://kriesi.at/support/topic/is-it-possible-to-modify-files-in-enfold-child/, to add them to your child theme.
Cheers!
ElliottHey McEwans!
Try this out, http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/.
Regards,
ElliottHey!
Hmm, all of your posts are linking to external articles not located on your site. Not really sure how your doing that. Is it a plugin? Customization?
Best regards,
ElliottHi!
I added some CSS to your Quick CSS field. Just copy that for each new section you want to duplicate.
Best regards,
ElliottHey elisabertoldi!
Try adding this to your child theme functions.php file.
add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 ); function enfold_customization_modify_thumb_size( $size ) { $size['entry_with_sidebar'] = array('width'=>345, 'height'=>321); return $size; }And replace “entry_with_sidebar” with the image size and dimensions you wish to use.
If you do not see any changes then you may need to regenerate your thumbnails, https://wordpress.org/plugins/regenerate-thumbnails/.
Cheers!
ElliottApril 21, 2015 at 5:22 pm in reply to: LayerSlider: Previews suddenly not showing; unable to edit #432161Hi!
I created a new slider and the preview is working fine. In your other sliders it looks like the images are not being found. I don’t know what it could be so I would try contacting the LayerSlider plugin authors for more information.
Cheers!
ElliottApril 21, 2015 at 5:15 pm in reply to: Contact forms not arriving if the filled in email address domain does not exist #432153Hi Carlos!
You are wanting to create a type of “checking” feature to see if the email they enter actually exists? We already check to see if the email is a valid email address meaning it has a “@” character and period with extension. I do not think there is a way to check to see if an email actually exists though. If the user makes a typo in filling out their address there is no way for us to check that.
Regards,
Elliott-
This reply was modified 10 years, 9 months ago by
Elliott.
Hey!
It looks different now. You have the embed player set to 1500 x 874. You’ll want to use some smaller dimensions if you want it to fit nice in a full width layout.
Or if you use our video shortcode instead of embeds then it’s width will be set automatically.
Best regards,
ElliottApril 21, 2015 at 4:48 pm in reply to: Enfold – Magazine (post with link format does not run) #432126Hi!
If your post is using the link format then you would just copy the link inside the post content. The title will grab the link automatically.
For the Masonry try doing the same thing around line 275 in the masonry_entries.php file.
Best regards,
ElliottHey erikvermeulen!
Open up /enfold/css/shortcodes.css and around lines 2474 – 2508 you can see the code for changing their columns on smaller screens.
On line 2494 you can see where it gets set to 100% width on screens 480px wide or smaller.
@media only screen and (max-width: 480px){ .responsive #top .av-masonry-entry{width:100%;} }If you want to keep it at two columns then you could just delete that section so it stays on 50% width.
Best regards,
ElliottApril 21, 2015 at 4:31 pm in reply to: enfold vs yoast breadcrumbs, schema markup and some google testing tool errors #432108Hey porotikos!
1. You might be able to do something like this to swtich the breadcrumbs out with yoast breadcrumbs.
add_filter( 'avf_title_args', 'enfold_customization_yoast_breadcrumbs', 10, 1 ); function enfold_customization_yoast_breadcrumbs( $args ) { $args['breadcrumb'] = false; $args['additions'] = '<div class="breadcrumb breadcrumbs avia-breadcrumbs">'.yoast_breadcrumb().'</div>'; return $args; }I don’t remember if yoast_breadcrumb() is the correct function name to use or not though.
2. Send us a link to your results and we’ll take a look.
3. I guess it would depend on what you want to add and where. We already have the basics setup like title, date, etc etc. If your trying to do stuff like reviews or recipes then yes you could just add the markup to your page / post content without deactivating our code. You can view all of the markup we are already grabbing in /enfold/includes/helper-markup.php.
4. Send us a link to the test results please.
Cheers!
Elliott -
This reply was modified 10 years, 9 months ago by
-
AuthorPosts
