jkellerer
Forum Replies Created
-
I identified it was the plugin Sendgrid that was causing the issue.
Forum: Plugins
In reply to: [SendGrid] SendGrid Appears to be stripping Reset Password LinksHow did you fix this? what is TML?
I have the same issue. Send grid is stripping my reset password link.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Location URL (PLAIN URLI tried it, but now it breaks my link because now the location information is inside of a span tag.
Thanks
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Location URL (PLAIN URLbefore I was just using [location] and adding it to the end of the google map base url and it worked great.
Like this: https://maps.google.com/maps?q=%5Blocation%5D”
Forum: Fixing WordPress
In reply to: Blank white page on update/save of anything in AdminI figured out my problem. I had to completely re-install WordPress to get it to work correctly.
Brilliant! The new version took care of all those Notices!
Thanks!
Forum: Plugins
In reply to: [Revenue Share for Authors (RSP for Wordpress)] RSP Adsense Admin AdslotI also notice in the widget theme, in order to get the code to work if the author leaves their section blank, you just need to change line 141 from
$input4 = $input1;
to
$input4 = $input3;Forum: Plugins
In reply to: [Revenue Share for Authors (RSP for Wordpress)] RSP Adsense Admin AdslotHey so for me, I noticed the problem in the widget code. You were setting the authorId to the post id. So when you ran the code to see if the author had the meta data, it always came back false.
Just need to replace
$authorId = $post->ID;
with
$authorId = get_the_author_meta(‘ID’);
Now it seems to be working for me.
I am only using the widget, and the fixes are on line 113 & 39
Forum: Plugins
In reply to: [Revenue Share for Authors (RSP for Wordpress)] RSP Adsense Admin AdslotThat is what I am saying when you do a code inspect on the front end you see that it uses the pub id for both, but on the back end, I have my ad Id in the ad id field, and my pub id in the publisher id field.
Forum: Plugins
In reply to: [Revenue Share for Authors (RSP for Wordpress)] RSP Adsense Admin AdslotI am using a your widget instead. If you right click on the code, you can see it is trying to post an add, but instead of putting my specific ad code in the ad-spot, it places my publisher id.
If I am using a widget, I would set it to disabled right?
Forum: Plugins
In reply to: [Revenue Share for Authors (RSP for Wordpress)] RSP Adsense Admin AdslotMy website is: https://www.learnjazzstandards.com
If you scroll down to the footer, their is suppose to be an add. It is just black.
My settings:
RSP Adsense Pub Id – (my publisher ID for adsense – pub-xxxxxxxx)
RSP Adsense Admin Adslot (the Ad Id, that I created in adsense that matches the same specs- just string of numbers)
RSP Adsense AD Spot (disabled)
RSP Author Adshare Percent (75)
Lowest Level of User with Adsense Share (contributor)Forum: Plugins
In reply to: [Revenue Share for Authors (RSP for Wordpress)] RSP Adsense Admin AdslotI have not really found how to fix it, just that if I set the percentage to 99 percent, no ads seem to show.
Forum: Plugins
In reply to: [Revenue Share for Authors (RSP for Wordpress)] RSP Adsense Admin AdslotI figured it out I think… 99 percent does not seem to work.
There are no notices on the default theme. Do you know what might be causing that?
thanks
Here is line 3549 – 3567
/** * Filter whether to trigger an error for _doing_it_wrong() calls. * * @since 3.1.0 * * @param bool $trigger Whether to trigger the error for _doing_it_wrong() calls. Default true. */ if ( WP_DEBUG && apply_filters( 'doing_it_wrong_trigger_error', true ) ) { if ( function_exists( '__' ) ) { $version = is_null( $version ) ? '' : sprintf( __( '(This message was added in version %s.)' ), $version ); $message .= ' ' . __( 'Please see <a href="https://codex.www.ads-software.com/Debugging_in_WordPress">Debugging in WordPress</a> for more information.' ); /* THIS IS LINE 3560 */trigger_error( sprintf( __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s' ), $function, $message, $version ) ); } else { $version = is_null( $version ) ? '' : sprintf( '(This message was added in version %s.)', $version ); $message .= ' Please see <a href="https://codex.www.ads-software.com/Debugging_in_WordPress">Debugging in WordPress</a> for more information.'; trigger_error( sprintf( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s', $function, $message, $version ) ); } } }