Forum Replies Created
-
AuthorPosts
-
May 9, 2015 at 8:43 am in reply to: Custom Tab Shortcode to allow shortcodes in the Title field #441918
Hey!
Unfortunately, there is no workaround yet. Please hire a freelance developer if you really want to enable shortcodes on the tab title.
Best regards,
IsmaelMay 9, 2015 at 8:39 am in reply to: Move page title out of band out of the header and into the content area #441917Hey!
Can you please provide a screenshot of the layout that you want? You can replace the code with this:
add_action('ava_after_main_title', 'ava_after_main_container_mod'); function ava_after_main_container_mod() { echo "<div class'custom-title container_wrap'><div class='container'>".get_the_title()."</div></div>"; }Use the .custom-title selector to modify the style of the custom title. Remove the post default title with this:
.single h1.post-title.entry-title { display: none; }Cheers!
IsmaelHey GabrielAlberola!
Thank you for using Enfold.
Use the Color Section element then set the video_loop in section.php to false. Add this in the functions.php file:
add_action('wp_footer', 'ava_custom_script', 10); function ava_custom_script(){ ?> <script> (function($){ var video = document.getElementsByTagName('video')[0]; video.addEventListener("timeupdate", function() { if (video.currentTime >= 8) { video.pause(); console.log('paused'); }}, false); }(jQuery)); </script> <?php }Add conditional functions if you only want to affect the video on that particular page.
Cheers!
IsmaelHey!
Like I said, it will require custom modifications on the theme. I’m sorry but you will need to hire a freelance developer to configure the script properly. Please contact codeable: http://kriesi.at/contact/customization
Best regards,
IsmaelHey OneClickTech!
Thank you for using Enfold.
Use this in the Quick CSS Field:
#top .variations td.label, #top .variations td:nth-child(2) { width: 100%; display: block; }Best regards,
IsmaelHi!
I’m not sure if you have the latest version of the theme, 3.1.5. If not, please update the theme. Post the login details here so that we can inspect the page.
Best regards,
IsmaelHey!
Replace the code with this:
#top #header .mega_menu_title a { font-size: 12px !important; line-height: .8em !important; min-height: 15px; }Regards,
IsmaelHey!
If the editor is not working when using a default theme then it is not a theme related issue. Please try to deactivate all plugins then purge the cache. The website is using CDN. Remove the cache there as well.
Best regards,
IsmaelHi!
I’m sorry but we don’t provide support for third party plugins. Please contact the plugin author regarding this issue.
Cheers!
IsmaelHi!
Thank you for using Enfold.
The excerpt for small magazine entries is hidden by default because there’s not enough space to accommodate them. If you really want to display it, you can edit config-templatebuilder > avia-shortcodes > magazine.php, find this code on line 558:
if(empty($this->atts['thumbnails'])) { $image = ""; $extraClass = "av-magazine-no-thumb"; }Below, add this:
$excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 10) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, ''); }Best regards,
IsmaelHey!
What do you mean by ” I still have the usual 4 lines showing in the excerpt.
I have been also been trying with “excerpt” as “? So,, do you want to modify the excerpt length? Try to use this plugin: https://wordpress.org/plugins/advanced-excerpt/Or just add this in the functions.php file to control the excerpt length:
function custom_excerpt_length( $length ) { return 10; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );Regards,
IsmaelHi!
I didn’t do anything in the language settings. What do you mean it is “gone”? I checked the Enfold(EN) > Theme Options but it’s not configured properly: http://hotel-residence-loren.ch/wp-admin/admin.php?page=avia
Best regards,
IsmaelMay 9, 2015 at 5:28 am in reply to: URGENT – Theme causing WooCommerce product not to display #441871Hey!
I think the error occurs because one of the woocommerce extension is disabled, not sure what plugin but try to activate them one at a time. What is the mega menu issue exactly? Can you please provide a screenshot?
Best regards,
IsmaelHi!
Yes, the error is cause either by a third party plugin or a modification inside the theme. The site is subscribed to a CDN provider. Please purge the cache there. Refer to this link for a possible fix: https://kriesi.at/support/topic/layerslider-not-working-after-enfold-3-04-update/#post-357486
Best regards,
IsmaelMay 9, 2015 at 5:09 am in reply to: CSS only displaying on preview page in wordpress, not on actual page. #441868Hey!
Did you get the id while editing the page? I think that’s what you did. If you want to get the proper element css selector, you need to do this in the frontend or in the actual page (https://maidayy.com/services-and-pricing/). If you right click then select “view source” in your browser then search “fieldname2_2_slider” for example. You will not find anything. Please get the id or selectors on the actual page (frontend) not from the page editor.
Best regards,
IsmaelMay 9, 2015 at 5:03 am in reply to: No way to advance to the next month: Enfold + Events Calendar Pro #441867Hey!
I tried the login credentials thrice but it’s not working. Please check.
Best regards,
IsmaelHi!
It’s not possible to use php codes inside the editor by default but there are plugins out there that can enable this functionality. You can try these plugins:
https://wordpress.org/plugins/insert-php/
https://wordpress.org/plugins/php-code-widget/Unfortunately, the code might not work because of script incompatibility. Like for example, you cannot call the wp_footer function again because it is already included in the footer.php file:
wp_footer();And from the looks of it, the script is called inside another body tag. You need to remove that as well. Please contact the plugin author to modify it according to your needs.
Regards,
IsmaelMay 9, 2015 at 4:54 am in reply to: Links to pages and blog suddenly not working (404 Error / Forbidden) #441859Hey!
WP memory limit is set to 40M. Increase it to at least 128M. Refer to this link or contact your hosting provider: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Cheers!
IsmaelMay 9, 2015 at 4:52 am in reply to: WP Enfold Layerslider: How to put static content above the slider? #441857Hey!
What is the code for the form? You can create a new layer then switch to HTML type. Add the form code. Go to the Styles panel to adjust the appearance of the form.
Regards,
IsmaelMay 9, 2015 at 4:50 am in reply to: woocommerce product pricing not showing up when using enfold's advanced editor #441855Hi!
Duplicate post: https://kriesi.at/support/topic/woocommerce-product-price-on-single-page-not-showing-with-advanced-editor/#post-441854
We’ll close this one now.
Cheers!
IsmaelMay 9, 2015 at 4:48 am in reply to: WooCommerce product price on single page not showing with advanced editor #441854Hi!
Yes, you can use the default shortcode but you have to change the style manually. Use the theme’s product purchase button shortcode then add the price manually using a text or code block. It’s not that difficult to change the price and the text block when it’s time to update the product.
Best regards,
IsmaelHey!
The demo content should provide the initial or basic pages and some of the demo images needed to start a website. It will not however exactly duplicate the actual theme demo (http://kriesi.at/themes/enfold-business-flat/). Can you please provide a link to the website? You should be able to edit the initial pages provided by the demo content after the demo import process.
Regards,
IsmaelHey tech500!
Thank you for using Enfold.
The site isn’t loading when I checked it. I tried to check the actual site and the category page display all the products within the category.
Cheers!
IsmaelHey!
Like I said, it’s not possible to display the content in the blog overview page if the post is built using the advance layout builder. You need to add an excerpt manually.
Regards,
IsmaelHi!
@atlant: Can you please confirm if the snippet works? It’s pretty difficult to catch the issue because it is server related. If you can contact your hosting provider, it will help a lot.
Cheers!
IsmaelHi!
Are you referring to the post featured image? This is the post featured image thumbnail sizes:
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );One for post with sidebar and other is for posts without sidebar. Please give us a link to the post with the issue. 1.3MB for an image with a size of 1200x800px is a bit too big. Please resave it using any image editor as jpg with optimize quality.
Cheers!
IsmaelMay 9, 2015 at 4:21 am in reply to: Custom widget area + cyrillic name = broken in enfold 3.1.5 #441845Hi!
Alright. Thank you for the test site. Activating 3.1.5 removes or hides the custom widget areas but when you switch back to 3.1.3, the widget areas return back to normal. Unfortunately, the widgets are transferred inside the Inactive section so you will have to place it back to the correct widget areas.
Please give us access to the test site’s phpMyadmin panel. Or access the database. Go to the Search panel, input the keyword “sidebar”, select all tables. In the result list, click wp_options then look for the option_name “sidebar_widgets” and “avia_sidebars”. Please post the option_value on pastebin.com. We would like to check it.
Regards,
IsmaelMay 8, 2015 at 9:11 am in reply to: Custom widget area + cyrillic name = broken in enfold 3.1.5 #441449 -
AuthorPosts
