a4jp
Forum Replies Created
-
The default WordPress installation has alt tag fields for images. Can you please put back the field for the alt tag so when people click on an image they can set it properly like in any other part of WordPress (in galleries, for images, etc.)? Maybe you accidently removed it from your plugin at sometime. This is not something other users should have to fix as it’s a basic accessibility and SEO setting built into WordPress. Also just out of interest, how many programmers work at Elementor? Is Elementor a big company or small group of programmers?
Forum: Plugins
In reply to: [Spectra - WordPress Gutenberg Blocks] SEO and ALT keywordsThank you so much for the reply. If there aren’t alt settings in the block lots of us won’t be able to use this or want to as different keywords are needed on pages as it’s basic SEO. Also different languages. It’s sometimes not good to mix languages when doing SEO. I hope you can fix this though as the rest of your plugin looks great. We also get a penalty from Google if alt tags don’t match images properly. Please don’t set my post to resolved if it’s not.
- This reply was modified 9 months, 3 weeks ago by a4jp.
Forum: Plugins
In reply to: [Rencontre - Dating Site] Can you fix the gender settings?Thank you so much.
Thanks for the links but that is what I mean by you can’t set the ALT tag of each gallery on each page differently. The media gallery can be changed but not the gallery. This causes a huge SEO problem.
Gallery swipe > style > doesn’t fix the problem of images moving from right to left or left to right when images load and animate in from the right or left.
The mouse over animation of zoom in or out looks good but that is not what I’m talking about.
There is no confusion here.I’m having the same problem with one site. It wasn’t the Scroll Lock key either.
Can you give some coding hints on how to change the numbers? Are you just saving one number per page or multiple numbers?
Hi. Just checking back to see if you needed a bit of help with the programming.
I do everything by myself. That’s why I wanted to find out how to change/save the numbers from you as you made the plugin. Even if you could point me to the code that saves the page views that would help a lot.
Yes. I want to request a setting to change the number of page/post views or to get help to get the code I posted to work. You can freely use it anyway you like as well. Anything that helps people is great.
I could see the number of views was high for new pages from your plugin on the right side of my site. But if I can get this plugin/code working it doesn’t matter anymore as I can easily fix anything. And adjust pages/posts if something weird happens. I just want to see the real numbers but sometimes groups of people spam click to get their page view numbers higher. I’m okay with that but want a bit of control in some situations or if I’m making mockup sites for clients. If we can set the numbers it would be useful.
The number of views shows when you edit the post or page at the bottom of the settings menu on the right side.
I made a plugin to show the number of views from your plugin for pages and posts. I just don’t know how to let it edit the number. If you can help or add this to your plugin it would be great.
<?php /** * Plugin Name: Glen Custom View Count * Description: Add a view count field to pages and posts. * Version: 1.0 * Author: Glen Rowell */ // Function to get the post views count using WordPress Popular Posts function custom_get_wpp_post_views($postID) { return do_shortcode('[wpp_views_count post_id=' . $postID . ']'); } // Function to add custom view count meta box to the right side of the post editor function custom_view_count_metabox() { add_meta_box( 'custom-view-count-metabox', 'Page/Post View Count', 'custom_view_count_metabox_callback', 'post', 'side', 'default' ); } add_action('add_meta_boxes_post', 'custom_view_count_metabox'); // Callback function to display the "WordPress Popular Posts" view count in the meta box function custom_view_count_metabox_callback($post) { $postID = $post->ID; // Get the "WordPress Popular Posts" view count $count_wpp = custom_get_wpp_post_views($postID); // Remove commas and the word "views" from the count for the input field $count_wpp_cleaned = str_replace([' ', ',', 'views'], '', $count_wpp); // Output the view count field ?> <label for="custom-view-count">Page/Post View Count:</label> <input type="text" id="custom-view-count" name="custom_view_count" value="<?php echo esc_attr($count_wpp_cleaned); ?>"> <p><?php echo esc_html($count_wpp); ?></p> <?php } // Save the custom view count when the post is saved function save_custom_view_count($post_id) { if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return; if (isset($_POST['custom_view_count'])) { $view_count = absint($_POST['custom_view_count']); update_post_meta($post_id, '_custom_view_count', $view_count); } } add_action('save_post', 'save_custom_view_count'); ?>
How’s the update going? Tried Chat GTP to code a few things yet?
Forum: Plugins
In reply to: [Contact Form 7] Unsafe email config is used without sufficient protectiondefine( 'WPCF7_VALIDATE_CONFIGURATION', false );
is not fixing the problem with my subdomain. I even have a DKIM setup. What do we do next?Forum: Plugins
In reply to: [Broken Link Checker] Unparsed items 293 Link records 0 (0)Can you check the log?