Forum Replies Created
-
AuthorPosts
-
Hi!
Try changing the code to:
function rtl_columns_fix(){ ?> <script> (function($){ var resizeTimeout, sortedReverse = false; $(window).resize(function () { if (resizeTimeout) { window.clearTimeout(resizeTimeout); } resizeTimeout = window.setTimeout(function () { var windowWidth = window.innerWidth; if ((windowWidth < 767 && !sortedReverse) || (windowWidth >= 767 && sortedReverse)) { var rtlContainer = $('.entry-content-wrapper'); rtlContainer.each(function(){ var rtlCols = $(this).children('.flex_column').not('.av_one_full'); $(this).append(rtlCols.get().reverse()); }); sortedReverse = !sortedReverse; } }, 100); }).trigger("resize"); })(jQuery); </script> <?php } if(is_rtl()) { add_action('wp_footer', 'rtl_columns_fix'); }Regards,
JosueJanuary 23, 2015 at 3:26 am in reply to: Create a simple latest news list with only title and date from a category #384169Hi!
Use a Magazine (Content Elements) element.
Regards,
JosueJanuary 23, 2015 at 3:20 am in reply to: Problem with anchor and active menu item hilighted (bis) #384165Hi!
Try with this code:
/*fix menu parent highlight / anchor problem*/ .current_page_item .avia-menu-fx, .current_page_ancestor .avia-menu-fx, .current-menu-ancestor .avia-menu-fx, .current-menu-parent .avia-menu-fx { display: block !important; opacity: 1 !important; visibility: visible !important; } .current-menu-item .avia-menu-fx { display: none; } /*End menu fix*/Regards,
JosueHey!
Try adding this code to the Quick CSS:
#top .avia_hidden_link_text{display: none;}Cheers!
JosueHi!
The whole Theme Options page is a single page, the sections are just divisions that hide/show depending on the user selection. However, one thing you could do is hide the options with CSS, try adding this to theme / child theme functions.php:
if( get_current_user_id() == 1 ) { add_action('admin_print_scripts', 'custom_admin_css_func'); } function custom_admin_css_func() { ?> <style type='text/css'> #wp-admin-bar-avia, .avia_shop_option_link, .goto_theme_options, .goto_general_layout, .goto_general_styling, .goto_advanced_styling, .goto_header, .goto_sidebar_settings, .goto_footer, .goto_blog_layout, .goto_social_profiles, .goto_demo_import, .goto_importexport, .goto_theme_update { display: none !important; } </style> <?php }Change “1” by the user ID you want to affect and adjust the sections you want to hide/show.
Cheers!
JosueHi,
Can you post the link to your website please?
Regards,
JosueJanuary 23, 2015 at 2:47 am in reply to: ENFOLD One Page: how to keep header "as is" when scrolling down? #384151Hi!
Disable header stickiness in Header > Header Behavior and add this to Quick CSS:
#header{ position: fixed !important; }Cheers!
JosueHey Julian!
I’d suggest using it as a Shortcode, you can use this tool to generate it – http://generatewp.com/shortcodes/
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.image-overlay{ display: none !important; }Cheers!
JosueHey @kebiro,
I couldn’t reproduce the issue on my end (http://i.imgur.com/TDk90Nv.png), do you still have this problem? can you post a screenshot of your view?
Best regards,
JosueHey!
If a “Subject” field is present it will be used as the mail subject instead of the form parameter. However, there is a way to overwrite this, try adding this at the very end of your theme / child theme functions.php file:
add_filter('avf_form_subject','avia_change_mail_subject', 10, 3); function avia_change_mail_subject($subject, $new_post, $form_params) { $subject = 'My email subject'; return $subject; }Cheers!
JosueHi Jason!
You are running Enfold 2.8.1, the latest version of Enfold (3.0.5), please update.
Regards,
JosueHi!
The problem is caused by the Dutch translation file – http://screencast.com/t/ARxfL29da, i’d fix it for you but i don’t know Dutch (remember to re-generate the .mo file after doing the translation).
Cheers!
JosueJanuary 22, 2015 at 8:09 pm in reply to: How to invoke lightbox from image but show different content in Lightbox? #383952Hey!
Check it now, i used a different code.
(function($){ $(window).load(function() { if(window.top != window.self) { $('html').css('cssText', 'margin-top: 0px !important'); $('#wpadminbar').remove(); } }); })(jQuery);Regards,
JosueHi!
We’d need to see the website live in order to help with you this, let us know when you publish it.
Cheers!
JosueHi @kebiro,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueHi!
Make sure to link it without the base URL:
#anchorNot:
http://site.com/#anchorCheers!
JosueJanuary 22, 2015 at 8:21 am in reply to: Add to Cart – Redirect Loop – Not pointing to https #383540Great, thanks for sharing your solution :)
Best regards,
JosueHey James!
The only way to fix that would be to either give more space to the Wufoo iframe (changing the containing column) or modifying the form in Wufoo: making Arrive and Depart sit in a single line instead of columns so the Depart calendar popup doesn’t get cut.
Regards,
JosueHey!
You can use a Code Block element.
P.S. Please don’t create duplicates, also it is not recommended to “bump” your own threads since this will place them at the end of the support queue.
Best regards,
JosueHey Ignazio!
Have you tried setting both button’s position to “Align Left”?
Best regards,
JosueHello Peter,
This is beyond the scope of the support we can offer (custom scripts or 3rd-party plugins). However, if you have direct access to the HTML of that form you could mimic the HTML structure of the Enfold forms (create a Contact Form and check the source).
Regards,
JosueHey!
1. Yes, you just delete the things you won’t use in Pages/Posts/Portfolio Items or Appearance > Menus.
2. A regular license allows you have a single end-product (in your case one site), more info – http://themeforest.net/licenses/standardCheers!
JosueHi Jeen,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi Andrew,
As far as i know that’s more of a WordPress general issue, can you please check if the error persists with the default WordPress theme activated?
Cheers!
JosueHi Jan,
I couldn’t reproduce it on my local German install, can you please create me a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueHi Roman!
Full width element require special functionality in order to work as expected, not sure if this would work but try using the contents of template-builder.php as the base for your php template.
Cheers!
JosueHey!
It would be better if you send us the generated shortcodes, you’d need to enable debug for that. Also, have you already tried disabling all third-party plugins to see if it gets fixed?
Best regards,
Josue -
AuthorPosts
