jlalonde
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Issue setting up a child themeShame on me… Thomas, the theme developer (https://themezee.com/) spotted the error. The ending “s” was missing in the functions.php file name.
Sorry for the trouble.
Finally, this is working:
// Return if product excluded $download_id = $payment_data['downloads'][0]['id']; if ( $download_id !== 80 ?) { return false; }
If a buyer can buy more than one item at the time, this would need to be reviewed in order to check all products in the $payment_data[‘downloads’] array but, for my needs, this is OK for now.
Doing more test on this, I first focussed on making sure I’m getting the product ID. I tried these two methods to get the ID (and did nothing about aborting the auto-register action).
I found two methods. The first command suggested to me:
$download_id1 = $my_download->get_ID();
produces an error “Unable to complete your request. Please try again.”
A friend suggested to try this:
$download_id2 = $payment_data['cart_details']['id'];
In this case it returns an empty string (but no error).
Any other suggestion on how to retrieve the product id from the auto-register plugin?
Forum: Plugins
In reply to: [Video Slider - Slider Carousel] URL to jump to a give video in the sliderThanks for reply.
Jean
Thanks for reply.
Jean
Thanks for the follow-up. Will this by default included in future version of the plugin?
Forum: Plugins
In reply to: [WP ULike - All-in-One Engagement Toolkit] Icon not showing in summary pagesMarked as resolved.
Forum: Plugins
In reply to: [WP ULike - All-in-One Engagement Toolkit] Icon not showing in summary pagesDone. It works. Thanks, Alimir! 5-star eval posted for support ??
Forum: Plugins
In reply to: [WP ULike - All-in-One Engagement Toolkit] Icon not showing in summary pagesExcuse my English. By “summary” page, I mean all pages that show multiple posts, like home page, category page, etc.
Example of the issue (on https://webradio.jeanlalonde.ca/):
https://i.imgur.com/4a236sV.png (top)
https://i.imgur.com/ST3yCJx.png (bottom)Thanks,
Jean
Forum: Plugins
In reply to: [WP ULike - All-in-One Engagement Toolkit] Icon not showing in summary pagesHi @alimir,
> Did you enable some options in “Auto Display Filter”?
No.
> (Also, I suggest you to reset the settings)
I did it for each tab (not sure if the reset was global or not). But the result is the same. I changed the “Auto Display Position” setting to “Top and Bottom of Content”. It is still OK in single posts but not in summary pages.
Thanks for reply,
Jean
Forum: Plugins
In reply to: [WP ULike - All-in-One Engagement Toolkit] Icon not showing in summary pagesPS: I changed the “Auto Display Position” setting to “Bottom of Content”. I still appear in the single pages (at the end) but now do not show at all in the summary pages.
Same issue here.
I thought that WP 4.7.1 would fix it but this is still an issue.
This form: https://quickaccesspopup.com/temp/scr-01.png
Is taking me to this broken link: https://quickaccesspopup.com/temp/scr-02.pngForum: Plugins
In reply to: [Subscribe To Comments Reloaded] WP 4.7 giving wrong permalink to the pluginOops! Forget about my previous message. The link is OK (it was only broken in my email).
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] WP 4.7 giving wrong permalink to the pluginHi,
According to this ticket page https://core.trac.www.ads-software.com/ticket/39280
the bug should be fixed in v4.7.1. I have this latest release installed and still have the bug: [manager_link] link not being replaced with the correct link.Anyone else has the same issue?
Jean
- This reply was modified 7 years, 10 months ago by jlalonde.
Forum: Themes and Templates
In reply to: [Courage] Changing list-style-position to outside:Found it. Enter this in child theme style.css:
.entry ul, .comment ul{
list-style: square outside;
}And do not forget to hit Ctrl-F5 (and not only F5) to refresh the page and see the CSS changes This is the step I was missing…