Forum Replies Created
-
AuthorPosts
-
Hi!
Looks like you added the video by using a third party plugin. Try to use the Video element instead.
Cheers!
IsmaelHi!
Add the previous code inside the media query:
.avia-builder-el-0.av-minimum-height-100 .container, .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow { height: 200px !important; }Best regards,
IsmaelHi!
Create a custom post type by using this plugin: https://wordpress.org/plugins/custom-post-type-ui/
Regards,
IsmaelHi!
What do you mean by “posts created outside of that form”? The code above should enable the Don’t display image on single post option by default.
Regards,
IsmaelApril 28, 2015 at 9:36 am in reply to: Main Slider not working correctly and Advanced Layout editor not working #435866Hi!
So.. you’re saying that it is fixed? I checked the page and the slider is working. Access the dashboard, edit a page and the advance layout builder is working as well.
Best regards,
IsmaelHey!
Hmm.. I’m not sure why it’s not working, maybe there’s a conflict between the button and the magnific popup script. Instead of the button, use a simple link then add the style of the button to it:
.inline_popup { padding: 15px 30px 13px; font-size: 13px; min-width: 139px; background-color: #2d5c88 !important; border-color: #0b3a66 !important; color: #ffffff !important; border-radius: 3px; text-decoration: none; display: block; border-bottom-style: solid; border-bottom-width: 1px; margin: 3px 0; line-height: 1.2em; position: relative; font-weight: normal; text-align: center; max-width: 100%; float: left; }Best regards,
IsmaelApril 28, 2015 at 8:05 am in reply to: Predefined color scheme and Quick CSS don't change the front end #435841Hi!
Thank you for using Enfold.
Looks like you have a minify plugin installed. Please try disable the minify settings then change something in the theme options. Let us know if it’s not working.
Best regards,
IsmaelApril 28, 2015 at 8:02 am in reply to: One of my pages says "Nothing Found" even when I added content to the page #435839Hey!
I think you forgot the website url.
1.) You can decrease the size of the sidebar on Enfold > General Layout > Dimensions > Content | Sidebar Ratio setting.
2.) The footer height will depend on the content. You can enable the Social Icons setting on the Footer panel.
3.) Use the bbPress login widget.
Best regards,
IsmaelHey!
Thank you for using Enfold and sorry for the delay.
Maybe, it’s just a cache issue with Chrome. Glad you figure it out.
Cheers!
IsmaelHi!
Please try to log out of the dashboard, remove the browser cache then login again. Or login using another browser, add the api key. Wait for an hour, the update should be visible by then.
Cheers!
IsmaelApril 28, 2015 at 7:50 am in reply to: Can't edit pages in Enfold 3.1.3 – possible plugin conflict? #435828Hi!
@muzioman: Please create a new thread then post the website url there. Make sure that you have the latest version of the theme, 3.1.3 running on WordPress 4.1.2 or later.Regards,
IsmaelHi!
The plugin creates a custom field where you can add an external image url as featured image but it doesn’t have an option to add custom url. I don’t think it will work as you expected.
Regards,
IsmaelApril 28, 2015 at 7:27 am in reply to: Missing Featured Image when using the advanced layout editor #435818Hey!
It is actually possible but it’s not available or possible yet with the current advance layout builder option for posts. Featured images of the posts will still be visible on category or archive pages. If you want to show excerpts on archive or category pages, use the excerpt meta box.
Best regards,
IsmaelHi!
I checked the site on an emulated mobile view and the phone number is still clickable. There’s no element covering it up. Please try to remove browser cache then reload the page.
Regards,
IsmaelApril 28, 2015 at 7:17 am in reply to: Making background color over the complete 1/2 in a color section #435814Hey!
Thank you for using Enfold.
Use the Grid Row element then set the cell size accordingly. You can apply different backgrounds for each cell.
Best regards,
IsmaelHi!
You can use this:
.template-blog .entry-content p { font-size: 16px !important; }Regards,
IsmaelHi sd142ppr!
Thank you for using Enfold.
Unfortunately, iframe forwarding or redirects will disable the site’s responsiveness. Please refer to this link for a possible fix: http://blog.thecompanywarehouse.co.uk/2012/08/22/cname-url-forwarding-frame-forwarding-which-is-best/
Best option is the 301 redirects via .htaccess. You can contact your hosting provider regarding this issue. Also, ask your host if IPS Forwarding is an available option.
Cheers!
IsmaelHey!
1.) For the single product page, please contact the woocommerce support.
2.) For post and portfolio pages, you can edit comments.php, look for this code:
<?php $ccount = (int) get_comments_number(); $rep = __( 'replies', 'avia_framework' ); if($ccount === 1) $rep = __( 'reply', 'avia_framework' ); ?> <span class='comment-count'><?php echo $ccount; ?></span>As I’m not familiar with the language, I’m not sure if I can properly test the logic of the code above. Please contact your friend or the script author.
Best regards,
IsmaelHi!
The advance layout builder are now enabled for posts. You can copy the layout of the blog overview page plus the single post content. Note that using the advance layout builder for post will remove all default elements such as featured image, post meta info, social share section etc. You need to start from scratch. If you expect to have the same single post layout as your current blog overview page, I’m afraid that’s not possible without major modification on the single.php file.
Cheers!
IsmaelHey!
I tested this again on our installation and the tabs scroll are now working with the latest version of the theme. It does scroll up whenever the tab title is not in viewport. I noticed that you have created custom columns inside the tabs. Can you please create a test page with only text as content? Let us know if the scroll target works there.
Cheers!
IsmaelHey!
The mega menu width is calculated dynamically via javascript to keep it full width. It will take a lot of css modifications to alter it.
Regards,
IsmaelHey!
What do you mean by “pictures still gets dimmed while hovering the masonry, but not any pictures”? I checked the page and it looks OK.
Regards,
IsmaelApril 27, 2015 at 11:41 am in reply to: Enfold – Magazine (post with link format does not run) #435156Hey!
Please remove the modifications then locate this code on the same file:
$link = get_permalink($entry->ID);That is two lines above the previous code that you modified. Replace it with:
$link = get_post_format($entry->ID) == 'link' ? avia_custom_link_content_filter($entry->post_content) : get_the_permalink($entry->ID);Add this in the functions.php file:
function avia_custom_link_content_filter($content) { //retrieve the link for the post $link = ""; $pattern1 = '$^\b(https?|ftp|file)://[-A-Z0-9+&@#/%?=~_|!:,.;]*[-A-Z0-9+&@#/%=~_|]$i'; $pattern2 = "!^\<a.+?<\/a>!"; $pattern3 = "!\<a.+?<\/a>!"; //if the url is at the begnning of the content extract it preg_match($pattern1, $content , $link); return $link[0]; }That should take care of the icon and title link. Make sure that you add the custom url at the very top of the post text editor.
Best regards,
IsmaelHey!
Very sorry for the delay. Looks like you disabled the sidebar. The filter to change the default page layout is not working for single product pages, that’s why we added the css codes as a workaround. If you want to change the border color, just replace this code:
.single-product aside.sidebar { border-right: 1px solid; }Add the color value:
.single-product aside.sidebar { border-right: 1px solid #eeeeee; }If you add the sidebar back, we’ll try to fix the whitespace issue.
Best regards,
IsmaelHey!
What if you replace the code with this?
@media only screen and (max-width: 480px) { #fullscreen_slider_0 li { background-size: 100% !important; background-repeat: no-repeat; }}It will distort the image a bit.
Cheers!
IsmaelHey Munford!
Thank you for using Enfold.
Unfortunately, it’s not possible to do it globally. You need to manually add the section id if the element is inside a color section or the custom css class attribute to each tab and accordion element then toggle the display property using css media queries. Refer to these links for more info:
http://stackoverflow.com/questions/11796297/div-show-hide-media-query
https://kriesi.at/support/topic/how-to-hide-some-elements-in-mobile-version/#post-362263
https://kriesi.at/support/topic/is-there-an-option-to-create-a-separate-page-design-specific-to-mobile-devices/
https://kriesi.at/support/topic/displaying-another-slider-on-mobile-devices/
https://kriesi.at/support/topic/replace-slider-on-mobile/Cheers!
IsmaelHi!
Got some errors in the console:
http://www.spaniafisioterapia.com/wp-includes/js/tinymce/wp-tinymce.php?c=1&ver=4107-20150118 Failed to load resource: the server responded with a status of 403 (Forbidden)
Please contact your hosting provider. Tell them about the error then ask them if they can adjust the file and folder permissions properly.
Regards,
IsmaelHey!
You can add something like this in the Quick CSS field:
.big-preview a:before { content: ''; display: block; width: 100%; height: 100%; background: rgba(0,0,0,.5); z-index: 1000; position: absolute; } .big-preview:hover a:before { display: none; }Cheers!
IsmaelHey!
Ok. I checked the code again here: https://kriesi.at/support/topic/the-magnific-popup-dont-work-with-buttons/#post-432781
I noticed that it’s incorrect. Please replace it:
add_theme_support('avia_template_builder_custom_css'); add_action('wp_footer', 'inline_popup_enabler'); function inline_popup_enabler(){ ?> <script> (function($){ $(window).load(function() { $('.inline_popup').magnificPopup({ type:'inline', midClick: true }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script> (function($){ $('.inline_popup a').addClass('inline_popup'); })(jQuery); </script> <?php }Make sure to add it below this line:
<?phpIf it doesn’t work, please post the login details here. We would like to check it.
Regards,
Ismael -
AuthorPosts
