abrunger
Forum Replies Created
-
Thanks! But the problem resolved by itself. Maybe with the automatic update to WP version: 6.4.3 ?
All okay now. Cheers.
- This reply was modified 2 years, 3 months ago by abrunger.
I’m also seeing this problem. In my case, at the URL created by Wordfence, I can see a copy of my entire home page. It is not blank.
I’m largely ignorant of the technology, but I’m also surprised by wfpeter’s response, which seems to be shifting the responsibility onto the user, or the blame onto Google. I’m not sure what to do.
Maybe I need to hire someone who can investigate a “misconfigured theme” or errant plugin?
(When I previously tried to find someone to configure the .htaccess file for simply redirecting non-https requests to the secure URL, and www requests to the non-www URL, I found all the candidates quickly got muddled. So not looking forward to that again.)Forum: Plugins
In reply to: [Quick and Easy FAQs] Really Dumb Questions … SorryNo worries. I was there a few years ago too. We all start from the beginning.
1. Anything in square brackets is called a shortcode in WordPress. You insert the shortcode into the text of a page or post.
Are the “terms” you are referring to the parameters that are passed to the command to display the FAQs? For example,
- order
- orderby
- style
- filter
You must embed the desired parameters within the shortcode you are entering in your page or post. Examples are given under the Documentation headings at https://ww.wp.xz.cn/plugins/quick-and-easy-faqs/. It is up to you to mix and match the various parameters as you desire, within the shortcode’s square brackets. So you might use [faqs order=”ASC” orderby=”date”] for example.
2. The order is set by the “orderby” parameter’s value. There are two options for this value, which you employ by using orderby=”title” or orderby=”date”.
If you are using the orderby=”date” parameter, the easiest way for you to change the order might be to alter the date of the individual FAQ items. Hover over the title of an item in the FAQ page and click on “Quick Edit”. You only need to alter the time or date slightly to make it seem like they were created in a different order, and that will affect the display.
I think I have used the technically correct terms. Hope this is what you are after.
Forum: Plugins
In reply to: [Quick and Easy FAQs] View FAQ as a pageIf you go to the FAQ menu item in the admin panel, click Quick Edit for the desired item, and note the slug. Append this to the URL as the “something” above. You can also get this URL as the permalink at the top of the Edit screen.
This should give you just the post content, without the question (post title), group heading, or any other page elements.
Also see the answer to my request at
https://ww.wp.xz.cn/support/topic/link-to-trigger-expansion-of-faq/ and maybe that will help.Or join me in that request for adding the function to scroll to and expand an accordion item within a page of FAQs.
Forum: Plugins
In reply to: [Quick and Easy FAQs] loading CSS last ?Yes, looking good once again with 1.3.2.
Many thanks! I am using the new accordion mode.
Forum: Plugins
In reply to: [Quick and Easy FAQs] ToggleThe Accordion feature is available in the new release now!
Forum: Plugins
In reply to: [Quick and Easy FAQs] link to trigger expansion of FAQ(ah, I should answer!)
Thanks for the idea, but I’m not using it. I want to link to the question, toggled open, in the FAQ page with all its elements and context.Now I see in the new version 1.3.0 that there are IDs for each question when using accordion style.
For example, https://couplesolutions.ca/faq/#qaef-2206 will scroll to the question. But it does not open the accordion. Still hoping for this.
Forum: Plugins
In reply to: [Quick and Easy FAQs] loading CSS last ?Thanks again for your quick attention! I will be monitoring for updates.
Forum: Plugins
In reply to: [Quick and Easy FAQs] v 1.3.0 removes line breaks from FAQ contentVery nice, that does it!
Thanks so much for your prompt and helpful response.
Forum: Plugins
In reply to: [Quick and Easy FAQs] open only one answer a timeThis mod, originally given at
https://ww.wp.xz.cn/support/topic/make-question-close-when-opening-another-one/
by nilesh6018, fails again.Would the author please consider adding this as a feature in the settings? Cheers.
Forum: Plugins
In reply to: [Insert Pages] multiple display argumentsD’oh! Yes! Thanks!
Forum: Plugins
In reply to: [Disable Media Permalink by Hardweb.it] hides permalinks, does not deleteNever mind, thanks, I found a solution at
https://wordpress.stackexchange.com/questions/316330/how-do-prevent-wordpress-from-creating-permalinks-for-media-filesForum: Plugins
In reply to: [Quick and Easy FAQs] open only one answer a timeThe file may have been overwritten in a recent update.
At the moment, the following works for me, as the entire contents of
/wp-content/plugins/quick-and-easy-faqs/public/js/quick-and-easy-faqs-public.js(function( $ ) { 'use strict'; /** * FAQ's setup * * Remove .nojs from .qe-faq-toggle elements, and collapse all expanded * elements */ $(function() { var all_toggles = $('.qe-faq-toggle'); all_toggles.removeClass( 'nojs active' ); all_toggles.find('i.fa').removeClass( 'fa-minus-circle' ).addClass( 'fa-plus-circle' ); }); /** * FAQs Toggles */ $(function() { $(".qe-toggle-title").click(function () { if ($('.qe-toggle-content').is(':visible')) { $(".qe-toggle-content").slideUp(100); $('.qe-toggle-title').find('i.fa').removeClass( 'fa-minus-circle' ).addClass( 'fa-plus-circle' ); } if ($(this).next(".qe-toggle-content").is(':visible')) { $(this).next(".qe-toggle-content").slideUp(100); $(this).find('i.fa').removeClass( 'fa-minus-circle' ).addClass( 'fa-plus-circle' ); } else { $(this).next(".qe-toggle-content").slideDown(100); $(this).find('i.fa').removeClass('fa-plus-circle').addClass('fa-minus-circle'); } }); }); /** * FAQs Filter */ $(function() { $('.qe-faqs-filter').click( function ( event ) { event.preventDefault(); $(this).parents('li').addClass('active').siblings().removeClass('active'); var filterSelector = $(this).attr( 'data-filter' ); var allFAQs = $( '.qe-faq-toggle' ); if ( filterSelector == '*' ) { allFAQs.show(); } else { allFAQs.not( filterSelector ).hide().end().filter( filterSelector ).show(); } }); }); })( jQuery );- This reply was modified 7 years, 4 months ago by abrunger.
Forum: Plugins
In reply to: [Quick and Easy FAQs] open only one answer a timeTo use the code given at
https://ww.wp.xz.cn/support/topic/make-question-close-when-opening-another-one/by nilesh6018, replace siskoto’s code for /** * FAQs Toggles */ in your file
\public_html\wp-content\plugins\quick-and-easy-faqs\public\js\quick-and-easy-faqs-public.jsbut add the missing
});
at the end.Forum: Plugins
In reply to: [Media Library Categories] media categories mix with posts’ categoriesStill not working as separate for me. I deactivated the snippet (for PHP v 7.2) and selected all the items in the media library and bulk removed all categories. Then I ran garbage collection and WP database optimize.
Both Media and Post Category pages continued to show the same items, which were all originally post categories. I deleted one of them in the Media Category screen to see if it was a separate duplicate, but it was also deleted from the Post list. Added it back in the Post list, and it is there in the Media list again.
I also tried deactivating and uninstalling the Media Library Categories plug-in, and putting it back, and toggling the snippet activation.