Forum Replies Created
-
AuthorPosts
-
My bad, check my updated message.
April 1, 2016 at 12:10 am in reply to: Accordion toggle align to top of viewport // Deeplinking #606375You are welcome, glad to help :)
Regards,
JosueApril 1, 2016 at 12:00 am in reply to: 'Scroll down arrow' lands too low on page with 'Header is invisible and appears' #606369Thanks for sharing that @alexanderduenchem.
Regards,
JosueOk let’s do the second, change the code to:
#top.single-post .title_container{ display: none; }
Change the code to:
function enfold_tag_title_func() { $queried_object = get_queried_object(); return "Posts about: ".$queried_object->name; } add_filter('avf_tag_label_names', 'enfold_tag_title_func');
-
This reply was modified 9 years, 3 months ago by
Josue.
Hey Andrew!
For some reason your site is not loading on my end but i suppose the issue you’re having it’s related to some elements being outside of
#wrap_all
, try the following:
– Make sure all content is wrapped in a Color Section (or multiple ones).
– Enable debug mode and check for unwanted
HTML tags between shortcodes.Cheers!
JosueMarch 31, 2016 at 11:53 pm in reply to: Masonry Blog and Masonry Portfolio: Option to choose Title and or Summary Gone! #606359Hello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueCan be daunting but i think it’s worth a try (if you really need it).
Regards,
JosueIn your style.css there’s a missing closing
}
:/*=== REMOVE VERTICAL LINE ===*/ .main_color blockquote, .main_color .avia-bullet, .main_color .av-no-color.av-icon-style-border a.av-icon-char { border:0;
Should be:
/*=== REMOVE VERTICAL LINE ===*/ .main_color blockquote, .main_color .avia-bullet, .main_color .av-no-color.av-icon-style-border a.av-icon-char { border:0; }
March 31, 2016 at 11:49 pm in reply to: multiple mailadresses in contact form comma seperated not working correctly #606353Hey @volmering!
Just letting you know that this was indeed a bug and it’s has been fixed in the latest version of the theme. Sorry for the fuss.
Regards,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
function enfold_tag_title_func() { $queried_object = get_queried_object(); return $queried_object->name; } add_filter('avf_tag_label_names', 'enfold_tag_title_func');
Cheers!
JosueMarch 31, 2016 at 11:44 pm in reply to: Portfolio Questions with Landscape/Portrait Settings #606348Correct, let us know how it goes :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
#top.page .title_container{ display: none; }
Cheers!
JosueYou are welcome, glad it worked :)
Cheers!
JosueHey,
There are WordPress functions you could use, and if you’re using ALB on these Posts you could make a shortcode for them.
Best regards,
JosueMarch 31, 2016 at 11:34 pm in reply to: Visual Editor white, but not for reasons I've seen in other posts… #606341You are welcome, glad to help :)
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueThe bug occurs when you scroll through the site very fast and it occurs because the images from the masonry take some time to load, can you please create me a WordPress administrator account (i’d like to test the codes myself)?
Regards,
JosueMarch 31, 2016 at 11:28 pm in reply to: Visual Editor white, but not for reasons I've seen in other posts… #606335When registering the Members CPT you missed
editor
from thesupports
parameter so TinyMCE wasn’t being included there, i’ve changed it to:// CPT for Team Members function create_posttype() { register_post_type( 'team_members', // CPT Options array( 'labels' => array( 'name' => __( 'Team Members' ), 'singular_name' => __( 'Team Member' ) ), 'public' => true, 'supports' => array( 'excerpt', 'thumbnail', 'editor' ), 'has_archive' => true, 'rewrite' => array('slug' => 'team-members'), ) ); }
Hi,
Can you please create me a WordPress administrator account? post it here as a private reply.
Regards,
JosueOK i guess we’re done here, i’ll close the ticket now, if need anything else feel free to open a new one.
Cheers!
JosueMarch 31, 2016 at 11:15 pm in reply to: Visual Editor white, but not for reasons I've seen in other posts… #606324Ok revert back to the old code you were using. Can you please create me a WordPress administrator account? post it here as a private reply.
Problem is the other 4 block do have titles (each one).
Ok let’s try one more time:
function add_custom_script(){ ?> <script> (function($){ $(document).ready(function() { $(window).on('scroll', function(){ $(window).trigger('resize'); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');
Hey!
Are you using the latest version of the theme (3.5.1)?
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
#footer .flex_column.first .widgettitle { position: relative; left: 110px; top: -10px; } #footer .widget { overflow: visible; }
Cheers!
JosueUse the following:
#top .inner_sort_button span { color: red; font-size: 22px; letter-spacing: 2px; }
Modify as needed.
Hm, try changing it to:
function add_custom_script(){ ?> <script> (function($){ $(window).load(function() { setTimeout(function(){ $(window).trigger('resize'); }, 100); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');
-
This reply was modified 9 years, 3 months ago by
-
AuthorPosts