Forum Replies Created
-
AuthorPosts
-
hi
please deactivate advanced recaptcha plugin and u will see the problemI changed contact form settings and recaptcha is visible in the usual way. but not working on blog
July 17, 2019 at 8:27 am in reply to: Include icons with css [after] – not working for icons #1119449I got it with little experiments. The following code you provided worked. Thanks a lot
.comment-header::after { content: url('https://img.icons8.com/ios-glyphs/30/F1C40F/5-star-hotel.png'); display: inline; } .comment-header .comment-meta.commentmetadata { display: inline !important; }
July 17, 2019 at 7:54 am in reply to: Include icons with css [after] – not working for icons #1119435Please give me icons code
I dont know how to edit the above CSS to include 5 starsJuly 16, 2019 at 4:25 am in reply to: Include icons with css [after] – not working for icons #1119024No. I have done it manually. Not with css. Please read initial posts. I want 5 stars to be shown with all commentator names.
July 15, 2019 at 10:11 am in reply to: Include icons with css [after] – not working for icons #1118720Yes i want to use those only. But 5 stars in a row
July 15, 2019 at 10:10 am in reply to: Include icons with css [after] – not working for icons #1118718Thanks for the replies. I want 5 stars in one single block
Someone else might need it so i am sharing this solution
/* Change Text Site Wide */ function wpfi_change_text6( $translated_text ) { if ( $translated_text == 'Comments' ) { $translated_text = 'Reviews'; } return $translated_text; } add_filter( 'gettext', 'wpfi_change_text6', 20 );
Can you tell me how to do with functions.php? I will remove javascript from functions.php
now the problem is that “number” of comments are not shown for the following
jQuery(".single-post .comments-link").text("Reviews"); jQuery(".category .comments-link").text("Reviews"); ---> jQuery(".single-post .comment-text").text("Reviews"); ---->
- This reply was modified 5 years, 4 months ago by Zatara.
Amazing
the code works
thanks a lot @mikeThanks for reply. But I don’t want a short code to show widgets. I want all categories and tags, blog etc to always show random posts rather than date wise posts which wordpress shows by default. Request you to provide that code for enfold theme.
i have not added anything as yet. i need code from you
bump
please help what to insert in functions.php of child themeHi. I just checked my website. What specific privacy setting are you talking about? I saw there is no such setting on video module of enfold theme.
Also, if you are talking about a youtube setting, then why is the video working fine on my homepage?
Again, my problem remains unsolved. You have changed settings to “wait for user interaction to load video”. That is not a solution.
Please help me resolve the issue.
Thanks
This reply has been marked as private.got it. at last
time { display: none; }January 28, 2018 at 12:50 pm in reply to: Google SEO for tabbed content – enfold toggles hidden content #903868Tab sections are indexed by google. Only the value of data remains low. While a visible content may rank on google, tabbed content may have difficulty in ranking.
May 12, 2017 at 9:49 pm in reply to: Google SEO for tabbed content – enfold toggles hidden content #792516Yes. It works. Thanks for support.
May 12, 2017 at 1:28 pm in reply to: Google SEO for tabbed content – enfold toggles hidden content #792274did it this way
<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */ function add_custom_script_1(){ ?> <script> (function($){ $(window).load(function() { var toggler = $('.toggler'); var togglewrap = $(toggler).next(); $(toggler).each(function(index, element) { $(togglewrap).css({ 'display' : 'block', 'position' : 'static', 'visibility': 'visible', 'width' : 'auto', 'z-index' : 1, }); $(this).addClass('activeTitle'); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script_1', 1); function av_close_toggles(){ ?> <script> jQuery(window).load(function(){ setTimeout( function() { jQuery('p.toggler').removeClass('activeTitle'); jQuery('.toggle_wrap').removeClass('active_tc'); jQuery('.toggle_wrap').css({ 'display' : 'none', 'position' : 'static', 'visibility': 'visible', 'width' : 'auto', 'z-index' : 1, }); }, 6000); }); </script> <?php } add_action('wp_footer', 'av_close_toggles');
May 12, 2017 at 12:23 pm in reply to: Google SEO for tabbed content – enfold toggles hidden content #792243After seeing “only your code” work, i want to re-phrase the question –
1. When page loads, i want all toggles to be open.
2. 5 seconds after page load, they all should close.What your code does –
1. All toggles remain closed on page load.
2. If i open a toggle, it closes automatically.
This is not what I want.Please provide code again. Thanks a lot for the efforts.
May 11, 2017 at 7:24 pm in reply to: Google SEO for tabbed content – enfold toggles hidden content #791851Hi.
I tried code by @Yigit and code by @tjswarbs78 and combined code of both.function av_close_toggles(){ ?> <script> jQuery(window).load(function(){ setTimeout( function() { jQuery('p.toggler').removeClass('activeTitle'); jQuery('.toggle_wrap').removeClass('active_tc'); }, 5000); }); </script> <?php } add_action('wp_footer', 'av_close_toggles');
and
<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */ function add_custom_script_1(){ ?> <script> (function($){ $(window).load(function() { var toggler = $('.toggler'); var togglewrap = $(toggler).next(); $(toggler).each(function(index, element) { $(togglewrap).css({ 'display' : 'block', 'position' : 'static', 'visibility': 'visible', 'width' : 'auto', 'z-index' : 1, }); $(this).addClass('activeTitle'); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script_1', 1); function av_close_toggles(){ ?> <script> jQuery(window).load(function(){ setTimeout( function() { jQuery('p.toggler').removeClass('activeTitle'); jQuery('.toggle_wrap').removeClass('active_tc'); }, 5000); }); </script> <?php } add_action('wp_footer', 'av_close_toggles');
But if toggles are already open, they do not close.
I think even 3 or 4 auto clicks on toggles can work too.
I don’t know java script. Just guessing. Please help me on this. Giving you admin passwords
- This reply was modified 7 years, 6 months ago by Zatara.
May 11, 2017 at 8:23 am in reply to: Google SEO for tabbed content – enfold toggles hidden content #791532How to automatically close the toggles after few seconds?
Timed closing is my question.
Can you change your code so that opened toggles close after 5 seconds?
May 10, 2017 at 7:02 pm in reply to: Google SEO for tabbed content – enfold toggles hidden content #791281@tjswarbs78
thanks for reply. i agree with you on all points. since the words are more, that is why i want to keep toggles open – until they close automatically after 3-5 seconds. you have mentioned code to keep toggles open, but i want them to close also – not manually by user, but automatically after a few seconds. how to do that? -
AuthorPosts