Alkorr
Forum Replies Created
-
Hi Martin, do you think this is something you could add to your plugin? Thank you! ??
Hi Martin! I’m checking in, just in case this topic is still something you could work on, thank you! <:)
Hi Martin! It’s been a long time since I checked this forum and I’m glad you took this suggestion into consideration! ??
This thread is tagged as being ‘Resolved’, does it mean media in retweets are now (or soon will be) available? Thanks!
Forum: Fixing WordPress
In reply to: Custom Search Results Template For Specific WordsDuly noted. But I was only looking to get a head start on my problem, I try to learn something each time I ask for help on this great forum, even if I know my questions can be tedious to people with knowledge I don’t have.
I’m gonna keep looking by myself then and succeed in doing what I want, eventually!
Forum: Fixing WordPress
In reply to: Custom Search Results Template For Specific WordsIf I knew how to code then I wouldn’t need to bother anyone with my question on this forum ??
That said, thanks for the tip Joy, I’m gonna check how to use get_template_part() but I’m afraid I won’t be able to achieve much from there…
In the meantime, if anyone has more precise info on how to customize a search result page, with some examples, that would be very helpful! ??
Forum: Fixing WordPress
In reply to: Custom Search Results Template For Specific WordsHi Joy! Thank you for your reply! I just checked the page, it’s very interesting but I don’t see any mention of a specific word search in it.
From what I understand (and I don’t know how to code, sorry) this code calls a specific template for a specific page. I think it’s in some way connected to what I’m looking for but I thought it could be done by (simply, I’d humbly dare to say) adding a query on the search.php : if search=thrillers then show this custom html code instead of the default one.
Unfortunately I have no idea how to do that, hence my question on this forum <:)
Hi David! Your plugin is so awesome, thank you for the great work!
But you know, there’s always something missing, so since it’s been 2 months now since your last reply, I have to ask: any news from Pinterest or regarding the use of the new API? Managing Pinterest account would make your plugin perfect ??
Thanks again!
Forum: Plugins
In reply to: [Web Stories] Copy / Duplicate LayersHi Luckyna San, thanks for your reply! I already use shortcuts (Ctrl C / Ctrl V, etc…) and it works fine. Unfortunately, when I copy the text from a layer and paste it on another page, the text is not formatted anymore (not the same font, not bold, etc…).
It would be great if it could work, it would make it easier to create pages and not lose a lot of time formatting the text again each time I copy/paste it <:)
Forum: Developing with WordPress
In reply to: Add Audio Button Without ScriptHi corrinarusso, thanks for your reply but it’s what I’m looking for. I only want to play an audio file (audio.mp3) directly from the homepage and I don’t want to add another script in the header (like this one https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_audio_play) if it’s not necessary.
Forum: Developing with WordPress
In reply to: How to show name of tag+tagAwesome, thank you very much bcworkz, it works perfectly! ??
Forum: Developing with WordPress
In reply to: How to show name of tag+tagHi bcworkz! Thanks for your reply and the explaination, but I thought it would easier to achieve because I’m unfortunately not a coder (but I’m willing to learn) <:)
Since WordPress supports multiple tag queries (in my case: https://www.mydomain.com/tag/books+romance/) I thought there was a ‘WordPress built-in’ way to show both tag names and not only the first one of them (in this case, Books).
I tried to add the query you posted but it breaks my page… Could you please provide a more detailed or an easier way to do it? Thanks for your help! ??
I guess it does, thank you so much! ??
Indeed, thank you for the info! ??
Forum: Plugins
In reply to: [Better Search Replace] Database with 20 000+ postsI confirm, the plugin worked as expected!
Hi, me again! I checked your github and I’ve seen this code, which in fact does the opposite I’m looking for:
// Do not log some post types, for example pages and attachments in this case add_filter('simple_history/log/do_log', function ($do_log = null, $level = null, $message = null, $context = null, $logger = null) { $post_types_to_not_log = array( 'page', 'attachment', ); if (( isset($logger->slug) && ($logger->slug === 'SimplePostLogger' || $logger->slug === 'SimpleMediaLogger') ) && ( isset($context['post_type']) && in_array($context['post_type'], $post_types_to_not_log) )) { $do_log = false; } return $do_log; }, 10, 5);
I can’t list all the events I want to be logged because I only want to log 5 events.
Thanks a lot! ??