ramya
Forum Replies Created
-
Thanks, @skalanter
Ya the code work fine but in mobile device When clicked, it displays a dropdown and instantly redirects to the cart page.
Instead of redirecting or displaying a dropdown in the mobile layout, I need the cart to appear as an overlay in an off-canvas style.
- This reply was modified 3 months, 2 weeks ago by ramya.
Forum: Themes and Templates
In reply to: [OceanWP] Massive Performance Issues with 4.0.0Hey @webtoffeesupport, thank you so much for the code. It works well!
Thank you. May I know if any hook or action’s filter is available once the coupon is generated?
Yes, I’m using the plugin “Customer Reviews for WooCommerce” by CusRev, along with an additional feature: a filter/action hook to programmatically assign a coupon category. This helps other developers.
Ha, I tried this one but it display on thread list items and coversations list too
Forum: Plugins
In reply to: [wpForo Forum] Adding Custom Forum Post Meta and RetrievingOkay, thank you for the reply. One more thing: How can I display a favorite list in the BuddyPress Profile Forum menu? there’s a menu for liked posts but not for favourite posts
Forum: Plugins
In reply to: [wpForo Forum] Specific Forum ModeratorHow to update wpforo_profiles programmatically, after Chages it could also reflect here when calling the function wpforo_member($user_id());
Forum: Plugins
In reply to: [wpForo Forum] Specific Forum ModeratorHi I already read the documentation, I need a board moderator for my developing project, so when user assigned to the board they have an all controll to that assigned board
Forum: Plugins
In reply to: [wpForo Forum] Specific Forum ModeratorThank Your so much, it work fine on frontend, For backend dashboard how to disable the other menus
Hi, Can I know which program file’s to edit to achieve this feature
How to create a cuctom tab and load the conversation about products in that tab Screenshot by Lightshot (prnt.sc)
Ok Thank you
Now, I able to change the Image and Subject, but still struggling in changing the title. Screenshot by Lightshot (prnt.sc)
Thank You, Using this I can only able to override the subject on a thread using the filter better_messages_rest_thread_item() , how to overwrite the title and image
add_filter('better_messages_rest_thread_item', 'custom_thread_item', 20, 4 ); function custom_thread_item( $thread_item, $thread_id, $thread_type, $include_personal ){ // Overwrite subject $thread_item['subject'] = html_entity_decode('Overwrite subject'); // Overwrite title $thread_item['title'] = html_entity_decode('Overwrite title'); // Overwrite subject $thread_item['img'] = 'https://www.wordplus.org/wp-content/uploads/group-avatars/1/60897d5f10593-bpfull.png'; return $thread_item; }