Forum Replies Created
-
AuthorPosts
-
Stefano
KeymasterHi Jason,
please make sure you have correctly set up Google Analytics to work with the plugin ๐ Once that has happened, you may want to draw some past data through the Update data feature in the Google Analytics Status box of the Options page.Does this help?
Have a nice day,
StefanoStefano
KeymasterThanks man, really appreciate it! ๐
Stefano
KeymasterHi Richard,
yes – I have edited the code in my last post and added an extra function at the bottom ๐If you like the plugin, please consider leaving a positive review on the repository, I would really appreciate that ๐
Have a nice day,
StefanoStefano
KeymasterHi Richard,
I won’t implement this as a public feature, because I don’t think many people are interested in it. However, adding the following code in your theme’s functions.php will add it for you ๐function ppcp_add_registration_time_col( $cols ) { $before = array_slice( $cols, 0, 2 ); $after = array_slice( $cols, 2, count( $cols ) ); //Push the total payment col back, with new cols in the middle $cols = array_merge( $before, array( 'author_registration_date' => __( 'Author registration', 'ppcp' ) ), $after ); return $cols; } add_filter( 'ppc_general_stats_format_stats_after_cols_default', 'ppcp_add_registration_time_col' ); function ppcp_add_registration_time_content( $formatted_stats, $author, $posts ) { $userdata = get_userdata( $author ); $registered = explode( ' ', $userdata->user_registered ); $before = array_slice( $formatted_stats, 0, 2 ); $after = array_slice( $formatted_stats, 2, count( $formatted_stats ) ); //Push the total payment col back, with new cols in the middle $formatted_stats = array_merge( $before, array( 'author_registration_date' => $registered[0] ), $after ); return $formatted_stats; } add_filter( 'ppc_general_stats_format_stats_after_each_default', 'ppcp_add_registration_time_content', 10, 3 ); function implement_general_sortable_columns( $sortable_cols ) { $sortable_cols['author_registration_date'] = array( 'author_registration_date', false ); return $sortable_cols; } add_filter( 'ppc_stats_general_sortable_columns', 'implement_general_sortable_columns' );Have a nice day,
Stefano-
This reply was modified 7 years, 9 months ago by
Stefano.
Stefano
KeymasterThat’s great to hear! ๐
Stefano
KeymasterOf course: I have just issued it ๐
Have a nice day,
StefanoStefano
KeymasterHi Acep,
the Request Payment addon does require the PRO version to work correctly, yes. The reason is simply that Post Pay Counter alone (free) does not provide any payment tracking features. The addon integrates with the payment management features of the PRO version ๐Hope this helps!
Have a nice day,
StefanoStefano
KeymasterHi Chloe,
there’s no way to do that. One thing you can do, though, is to delete a payment history record and then mark as paid again with a new amount. Would that do? ๐Have a nice day,
StefanoStefano
KeymasterHi Chloe,
Do you want to change past payment history records, or do you want to assign a bonus to already paid posts, so that they can be paid again? ๐Have a nice day,
StefanoStefano
KeymasterHi Syed,
I’ll reach you by email to talk about custom work ๐Have a nice day,
StefanoStefano
KeymasterHi Syed,
sorry for the delayed reply!1. Is there a way I can show both the Unique Page Views and Page views to my authors?
Unfortunately, they are mutually exclusive as of now. I don’t believe this will change soon, as it would require changing quite a few things…
2. I also want to access some more data from GA. For example Values of UTM_Source & UTM_Medium, Country of Traffic, Time on Post etc.
In the past, I had tried to add support for Bounce rate/Average time on page and similar metrics, but it turned out to be very challenging from a technical point of view. As much as I would have liked that info myself, it was basically infeasible to implement them (at least, not in a way that would scale to big websites).
As for Referral info/Country that you mentioned, I am a bit against that in principle. Those cannot be easily used for paying authors and are not in the nature of the plugin. Bringing the Analytics dashboard to your WordPress is not the goal of Post Pay Counter ๐
Hope this helps!
Have a nice day,
StefanoStefano
KeymasterHi Capan,
can you please a screenshot of your Analytics Status box in the Options page? Also, provide your System info details (Post Pay Counter > System Info) ๐Have a nice day,
StefanoStefano
KeymasterNo ๐ However, the best/safest way to install the update is to deactivate the PRO version plugin, replace all files with the ones from the zip, and then reactivate it ๐
Stefano
KeymasterI still don’t know, I’m afraid! I don’t want to make promises I may not hold, so I don’t want to provide any date ๐
Stefano
KeymasterThis will go into the first public update of the PRO version, but you may try it out by downloading this temporary zip. Let me know! ๐
Have a nice day,
StefanoStefano
KeymasterYes, that’s correct. Would changing that to your site name work for you? ๐
Stefano
KeymasterGreat, delighted to know ๐
Stefano
KeymasterThere was indeed a bug in the PRO version, introduced in latest releases. I have now fixed it and released version 1.7.9.1 ๐
Have a nice day,
StefanoStefano
KeymasterOkay thanks for the details, I’ll have a more in depth look and let you know ๐
Stefano
KeymasterWhat is the break down for the payment of that post? I guess it’s divided n $5.00 and $0.06. What is the $5.00 for?
-
This reply was modified 7 years, 9 months ago by
-
AuthorPosts