JimRead24
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Notification Bell] Changing the color of the bell iconLoading Font Awesome into functions.php worked! Thank you for the support. For anyone who needs the code look below
function enqueue_font_awesome() {
wp_enqueue_style(‘font-awesome’, ‘https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css’, array(), ‘6.5.1’);
}
add_action(‘wp_enqueue_scripts’, ‘enqueue_font_awesome’);Forum: Plugins
In reply to: [WP Notification Bell] Deleting notfications after X amount of time.Wow this plugin looks useful! I’m going to check it out. Thank you!
Forum: Plugins
In reply to: [WP Notification Bell] UTC timezone issueWorks now! Thank you for the quick support.
- This reply was modified 1 year, 2 months ago by JimRead24.
Forum: Plugins
In reply to: [WP Notification Bell] UTC timezone issueYes, I’m using CPT notifications for a custom post type I created with ACF.
I just ran a test (it’s currently 2:52 EST) and the results gave me Testing Notfications (5 hours ago) 19:52.I’m not too familler with military time but I’m pretty sure thats still 5 hours off right?
I’m sorry I understand that part. I meant in my loop that shows all my posts. What code what I put in there to let the query know to use the ID of the next post.
Ok I saw you added the ID field thank you for that! I was wondering what code I would place in the shortcode now though. Sorry if this should be easy I’m not that great at wordpress.
Views: <?php echo do_shortcode('[wpstatistics stat=pagevisits time=total id=]'); ?>What goes after id= ?