Forum Replies Created
-
AuthorPosts
-
October 24, 2014 at 7:40 am in reply to: layerslider – second slide; sublayers all appear at the same time (on first load #340483
Hey harmrietmeijer!
Thank you for using Enfold.
I checked the site but I don’t see any issue on the layer slider. It looks good.
Cheers!
IsmaelOctober 24, 2014 at 7:36 am in reply to: Blog Issues – Comment box & missing information on comment submission issues. #340482Hey DaveL77!
Thank you for using Enfold.
1.) Add this on Quick CSS or custom.css:
#commentform label { position: absolute; left: 10px; font-size: 11px; top: 0; }2.) No, you can’t add a pop up error message without creating a custom script. Unfortunately, this particular task is beyond the scope of support, please hire a freelance developer for further customization or try this plugin: https://wordpress.org/plugins/wp-ajaxify-comments/
Regards,
IsmaelOctober 24, 2014 at 7:29 am in reply to: Blog grid with always the same preview picture of each category #340479Hi!
Thank you for the link. Add this on Quick CSS or custom.css to remove the featured image of the post slider:
.page a.slide-image { display: none !important; }Best regards,
IsmaelHi!
Thank you for using Enfold.
Unfortunately, you can’t constrain the grid row element on the main container. It will always be full width unless you use the boxed layout. What you can do is to add a custom css class on the grid row element: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Specify the width of the grid on different screen sizes using media queries.
Cheers!
IsmaelHey!
Looks like the only solution to your problem is to copy the #Form section of the base.css on Quick CSS or the child theme’s style.css file. Modify the code to override the base.css default #Form style.
Best regards,
IsmaelHey mpaska!
Thank you for using Enfold.
I was able to reproduce the issue on an iPod. The captions fields are not working but I can drag and sort the gallery items without any problem. Working on desktop and iPad is not the same. There are limitations on the admin interface when you’re working with WordPress using an iPad. Even the WordPress App is fairly new and still in development. I’ll ask Kriesi to take a look.
Best regards,
IsmaelHi!
If the list-style-type is not working, the css content property will do. Please refer to this link: http://www.w3schools.com/cssref/pr_gen_content.asp
Did the images improve on retina display when you select a larger image size?
Cheers!
IsmaelHey!
I checked Settings > Media and the Bildgröße „widget“ is stll 36x36px. It should be 210x90px if you follow the instructions above correctly. Please review the instructions, let us know if it works.
Best regards,
IsmaelOctober 24, 2014 at 6:31 am in reply to: New SEO Bug (?) on the v3.0.2 Update Makes Yoast SEO Unusable #340463Hey sdbroker!
Thank you for using Enfold.
Aside from additional options and elements on the advance layout builder, the system is unchanged. We would like to see the actual website. Please post it here. Make sure that you’re running Enfold 3.0.2 and the latest version of the plugin.
Cheers!
IsmaelOctober 24, 2014 at 6:17 am in reply to: The translation of the theme does not work on my site #340461Hey!
Since you’re not using WPML, you need to edit the en_US language file. After rescanning and translating the strings, click the generate mo file button.
Cheers!
IsmaelHey!
Still not sure why the icons are not working. Is it OK if we deactivate the plugins while working on the site? Please post the FTP details here. We would like to check the files.
Cheers!
IsmaelHey!
Did you add any modifications on the child theme? I can’t see the child theme code because the Appearance > Editor is missing. Please set the Frontpage and Blog page using the theme options. Reset the Settings > Reading to default.
Regards,
IsmaelOctober 24, 2014 at 5:45 am in reply to: Layer slider not fullwidth – with menu navigation on left – in responssive mode #340450Hey Softwaredanmark!
Thank you for using Enfold.
Please don’t set any value on the Layers Container field located on Slider Settings > Responsive Mode.
Cheers!
IsmaelHey Lynn!
Thank you for using Enfold.
I checked the site and the header elements are working as expected. Can you please provide a screenshot? You can use imgur, dropbox, clipular etc.
Best regards,
IsmaelOctober 23, 2014 at 3:14 am in reply to: Tab in custom page template: how to make them work on mobile? #339915Hey angeloca!
Thank you for visiting the support forum.
Please post the template code on pastebin.com. I’ll ask the rest of the support team and Kriesi to check.
Regards,
IsmaelOctober 23, 2014 at 3:12 am in reply to: How can i control the order of the sorted images in the portfolio? #339914Hey!
Thank you for using Enfold.
Please use this plugin: https://wordpress.org/plugins/post-types-order/
Or add this on functions.php:
add_filter('avia_post_grid_query', 'avf_custom_post_grid_query'); function avf_custom_post_grid_query ( $query ) { $query['orderby'] = 'date'; $query['order'] = 'DESC'; return $query; }Refer to this link for more sorting parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
Best regards,
IsmaelHi!
Instead of adding a video, add an image then enable the Apply a link or buttons to the slide?. Set the Image Link? to manual. Add the the url of the video. If you really want the lazy load, I’m sorry but we won’t be able to help you with that. Please hire a freelance developer or find a suitable plugin that is compatible with the theme.
Cheers!
IsmaelHey CAUM!
Thank you for using Enfold.
You can remove the first part of the title with this:
add_filter('avf_which_archive_output','avf_change_which_archive', 10, 3); function avf_change_which_archive($output) { if(is_category()) { $output = single_cat_title('',false); } return $output; }Regards,
IsmaelHi!
Thank you for using Enfold.
Please add this on Quick CSS or custom.css:
.image_size_widget .news-thumb { width: 210px; height: 90px; }You might need to add css media queries to change the size on different screen sizes. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
Go to Settings > Media then adjust the widget size thumbnail to 210x90px. If you don’t want to crop the images, set the Crop parameter to false or No but this might stretch the images with a different ratio. Update then save changes before you regenerate the thumbnails.
Regards,
IsmaelOctober 23, 2014 at 2:49 am in reply to: Mobile: Parent menu not clickable (Hide Mobile Menu Submenu Items) #339904Hi!
Please go to Enfold > Theme Options > Mobile Menu panel. Disable the Hide Mobile Menu Submenu Items to show all submenus by default. This will also enable the parent menu item.
Cheers!
IsmaelHi Lilo!
Thank you for using Enfold.
Add an Image or Color Section element on top of the slider then add a unique css selector to any elements on the advance layout builder except for column layouts. Refer to this link for more info:
http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/Edit the newly added element then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “hide-desktop”.
You can add something like this on your custom.css or Quick CSS to hide the image on desktop view:
/* All Mobile Sizes (devices and browser) */ @media only screen and (min-width: 767px) { .hide-desktop { display: none !important; } }Cheers!
IsmaelHi Santos Ramos!
Thank you for using Enfold.
No, the poster attribute is not possible with the Video element but you can use the default video shortcode: http://codex.wordpress.org/Video_Shortcode
Or you can use the Image element then set the Image Link? to manual. Add the video url. It will open the video on a lightbox.
Cheers!
IsmaelHi GGLNetwork!
Thank you for using Enfold.
You can use the portfolio items then set the pdf file link on Overwrite Portfolio Link setting > Define custom link. Use the portfolio grid element. Or use the Masonry Gallery element then set a custom link on the gallery items.
Cheers!
IsmaelOctober 23, 2014 at 2:36 am in reply to: Noindex subpages of archives when using avia builder 'blog' #339896Hey pageladder!
Thank you for using Enfold.
Please set the Blog on Enfold > Theme Options > Where do you want to display blog? option then go to Blog Layout panel. Set the Blog Style to “Use the advance layout builder”. We would like to check the actual website. Please post it here. Make sure that you’re running Enfold 3.0.2 on WordPress 4.0.
Cheers!
IsmaelHey!
Thank you for the info.
You’re using a very old version of the theme, 2.4.1. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
There are two enfold themes available but the old one is activated. Please delete the old one then activate the 3.0.1 version.
Regards,
IsmaelHi LukasE!
Thank you for using Enfold.
I’m sorry but can you please provide a screenshot or an example of what you’re trying to do. You can use the Fullwidth Submenu element on the advance layout builder to add another menu.
Regards,
IsmaelHi Martin!
Thank you for using Enfold.
Please edit the Frontpage settings on the other languages. Switch to your language dashboard then go to their respective Enfold > Theme Options, set the home page on Frontpage settings. Note that you need to configure these settings for each languages.
Regards,
IsmaelHi!
Thank you for the info.
Try switching the menu as Enfold Main Menu on Appearance > Menus > Theme Location. If it doesn’t work, please post the login details here. Set it as a private reply.
Cheers!
IsmaelHey!
Thank you for using Enfold.
Please check the login credentials. It’s not working. If possible, please deactivate all plugins then test it again.
Regards,
IsmaelOctober 23, 2014 at 2:16 am in reply to: Add "Next Post" and "Previous Post" text to Avia Next Prev Post Nav in Enfold #339888Hi onegirlrtw!
Thank you for using Enfold.
Please edit functions.php, find this code on line 386:
$tc1 = " <span class='entry-title'>{$the_title}</span>"; if($image) $tc2 = " <span class='entry-image'>{$image}</span>"; $output .= $key == 'prev' ? $tc1.$tc2 : $tc2.$tc1;Replace it with:
$tc1 = " <span class='entry-title'>{$the_title}</span>"; if($image) $tc2 = " <span class='entry-image'>{$image}</span>"; $tc3 = " <span class='entry-text-prev'>Previous Post</span>"; $tc4 = " <span class='entry-text-next'>Next Post</span>"; $output .= $key == 'prev' ? $tc3.$tc1.$tc2 : $tc4.$tc2.$tc1;Add this on Quick CSS or custom.css:
span.entry-text-prev, span.entry-text-next { font-size: 11px !important; position: absolute; }Cheers!
Ismael -
AuthorPosts
