oacstudio
Forum Replies Created
-
Forum: Plugins
In reply to: [Solid Post Likes] Admin scoresNice. Could I ask you for a plugin rating in return?
All the best!Forum: Plugins
In reply to: [Solid Post Likes] Updates?No problem.
Currently no updates on the horizon.Forum: Plugins
In reply to: [Solid Post Likes] Admin scoresHi Irene,
Thanks for reaching out and providing your code. Here is a version that works for us:
// Add to admin post column add_filter( 'manage_posts_columns', 'posts_column_likes' ); add_action( 'manage_posts_custom_column', 'posts_custom_column_likes', 5, 2 ); function posts_column_likes( $columns ) { $columns['oacs_likes'] = __('Likes'); // Use a simple string as the column key return $columns; } function posts_custom_column_likes( $column_name, $post_id ) { if ( $column_name === 'oacs_likes' ) { // This should match the key set in posts_column_likes $like_count = get_post_meta( $post_id, '_oacs_spl_post_like_count', true ); echo esc_html( $like_count ); // Ensure the output is escaped for security } }Kind regards,
Forum: Plugins
In reply to: [Solid Post Likes] Updates?Closing.
Forum: Plugins
In reply to: [Solid Post Likes] REST supportClosing.
Forum: Plugins
In reply to: [Solid Post Likes] Plugin not working on multi-siteClosing due to inactivity.
Forum: Reviews
In reply to: [Solid Post Likes] Support shortcode, easy to useHi @rockthan,
Thank you very much for 5*!
Forum: Plugins
In reply to: [Solid Post Likes] Updates?Hi again,
Got it. We will periodically update the plugin, but I have no ETA.
We will always dedicate time for support or troubleshooting, but currently that is all we can muster.Kind regards,
Forum: Plugins
In reply to: [Solid Post Likes] Updates?Hi @carlbtmn,
If I remember correctly, we have been in contact via mail multiple times where we indicated we have no plans on releasing new features any time soon.
Do you have a specific problem or is this a general inquiry?
Kind regards,
Forum: Plugins
In reply to: [Solid Post Likes] REST supportHi again,
> Theoretically the CRUD ones. But what I’m specifically looking for are get likes for a specific post and toggle like. Think of the following scenario where a blog from WordPress is being fetched inside a mobile app via WordPress REST API. Ideally we wanna grab the Likes functionality too.
Got it. ✅
> Also considering nonce requires extra steps to have it in a different client than WordPress ideally a server-side Basic auth should be enough?
We would probably leave authentication to WordPress Application Passwords or JWT tokens i.e.: https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/
Kind regards,
Forum: Plugins
In reply to: [Solid Post Likes] REST supportHi @sergiulucaci,
Thank you for your inquiry. A REST API module is actually on our list for paid plugins. I am afraid we do not have the bandwidth at the moment to develop them but may I ask what kind of endpoints you would be looking to use?
Kind regards,
Forum: Plugins
In reply to: [Solid Post Likes] Plugin not working on multi-siteHi @dedeeboru
Solid Post Likes has been designed for single site installations. You must not use “network activation” as this can lead to path and database problems.
Do you have the plugin active for the network or per site?
Kind regards,
Forum: Plugins
In reply to: [Solid Post Likes] Disable Anonymous UserHi again,
> Hopefully we get block editor functionality in the near future.
I’m going to mark this as resolved for now – if you have any further questions, you can start a new thread.
Kind regards,
Forum: Plugins
In reply to: [Solid Post Likes] Query loop blockHi again,
> Hopefully we get block editor functionality in the near future.
Noted :).
I’m going to mark this as resolved for now – if you have any further questions, you can start a new thread.Kind regards,
Hi @krdza93,
Thank you for the screenshot. That looks correct.
Let’s try and take a peek at your database. Could you try the following:
* Take a full site backup.
* Activate https://wordpress.org/plugins/wp-phpmyadmin-extension/
* With it enter phpmyadmin and look at some of the orders that are not suppose to be there. Take any data from them i.e. name or address and try to find them via the database:
Image Link: https://d.pr/i/G4Zz4eAre you able to locate them in your database that way maybe?
Kind regards,