wordmax
Forum Replies Created
-
Forum: Plugins
In reply to: [Open User Map] Bug – close map popup window loses map marker on mapYes, I will send you a link via PM or email so you can see. Thanks
Sorry, my mistake. The notice that keeps coming back is the “Updraft is on Social Media – Check us Out!”… we are using latest WP version and a handful of well-supported popular plugins all latest versions. WP Fastest cache being used and setting to cache for logged on users is OFF. Tried disabling cache, the admin notice updraft check us out social media still shows.
FYI – The notice remains gone if you stay in the Updraft plugin admin after you have dismissed it. But if you dismiss the message and then leave to another area of WP admin dash, etc then come back to the Updraft plugin settings, that message is always there again.
See imgur link for screenshot clarification:
View post on imgur.com
- This reply was modified 2 years, 11 months ago by wordmax.
Forum: Plugins
In reply to: [Open User Map] New feature suggestions for better UI & quality controlThe close X button on top right of info bubble window for map locations is not super visible so first time users of map using a small screen phone may not see how to close the info window after it opens. There should also be a way to close window at bottom of info bubble, so if the info bubble has a ton of text to read, then user can close window at the bottom without having to scroll all way to top to close the window. there could be admin option to enable/disable link at bottom of info bubble to close window and go back to map and maybe admin could choose words to use on that link – the default would be “CLOSE” but maybe one might use “Close Window – Back to Map”.
Forum: Plugins
In reply to: [Open User Map] Suggestion for a better faster geocoder for search…After further testing… the mapbox API geocoder offers many more place/business name locations included in the auto-suggest as user types… and much faster too… compared to the current geocoder method being used by the plugin for the map search box…
Forum: Plugins
In reply to: [TotalPoll for Polls and Contests] Rotating Pollsp.s. @totalsuite a poll rotator option would be a great feature to have for your plugin so admin can easily see list of all polls and bulk check/apply any or all polls to include in a poll rotator. the poll rotator would have it’s own shortcode [poll rotator id=1] to make it easy for wp admin to insert rotating polls anywhere on the site.
Forum: Plugins
In reply to: [TotalPoll for Polls and Contests] Rotating PollsHi @ep2012 – the free plugin Ad Inserter (https://wordpress.org/plugins/ad-inserter/) can rotate the poll shortcodes any where you want on the site. It allows for very specific control where and how content is shown onsite. I use that plugin for rotating all different kinds of content. Takes minute to get up to speed with the plugins, but well worth it. Just check Ad Inserter documentation and look for how to rotate so it might look something like this in the Ad Inserter block that you create…. hope this helps.
[ADINSERTER ROTATE] [poll id 1 shortcode] [ADINSERTER ROTATE] [poll id 2 shortcode] [ADINSERTER ROTATE] [poll id 3 shortcode] [ADINSERTER ROTATE] [poll id 4 shortcode]Forum: Plugins
In reply to: [Open User Map] Suggestion for a better faster geocoder for search…Is this what’s currently being used for geocoding? Looks familiar…
https://smeijer.github.io/leaflet-geosearch/Thanks for the quick response. It looks like the problem has been resolved. Two other plugins updated today and the problem went away. The two plugins were Spectra (https://wordpress.org/plugins/ultimate-addons-for-gutenberg/) and Code Snippets (https://wordpress.org/plugins/code-snippets/) and I think Code Snippets was the plugin that may have been causing the issue. We were using Code Snippets to implement the following code to put a link in left WP admin menu to show WP reusable Gutenberg blocks, which is makes it easy to find those blocks…
/** * Reusable Blocks accessible in backend * @link https://www.billerickson.net/reusable-blocks-accessible-in-wordpress-admin-area * */ function be_reusable_blocks_admin_menu() { add_menu_page( 'Reusable Blocks', 'Reusable Blocks', 'edit_posts', 'edit.php?post_type=wp_block', '', 'dashicons-editor-table', 22 ); } add_action( 'admin_menu', 'be_reusable_blocks_admin_menu' );Thanks
Awesome! Thanks
That works great. Thanks! I used the following to insert the desired reusable block post ID… only one problem the CSS for style changes to button for example (font, color, background) done in the WP reusable block editor on the right does not carry over. Perhaps a custom class is needed and then add a CSS to additional CSS on theme options. But that’s not an issue with Ad Inserter, that’s probably a WordPress or theme related issue.
looking forward to the feature being included with Ad Inserter. [adinserter data=….]
<?php echo get_post_field ('post_content', 4676); ?>p.s. the post type for reusable blocks is wp_block …
I am referring to the REUSABLE blocks in the WP admin Gutenberg editor. Each reusable block as a post ID number like 375, 486, etc.
So how can use ad inserter to insert a short code to display the desired reusable block ID #???
Something like
[reusable id="357"]See this article for explanation of what trying to accomplish:
https://advent.elliottrichmond.co.uk/get-gutenberg-reusable-blocks-outside-the-block-editor/
I’ll bet this is possible using Ad Inserter, it’s just a matter of knowing what post parameters to use for the
[adinserter data='post-id']where post-id would the post id# for the reusable block.Please advise on this specifically because this will be a VERY popular feature used by many in the future.
What about auto-suggest drop-down as user types other answer. If someone already entered “tacos” in a list of favorite foods with 150 answers and user misses that option then starts typing “tac….” will the auto-suggest let user know that same answer as they are typing already exist and that they should just vote for it instead of submitting duplicate answer?
Hi @mikeyboo,
Thanks for the tip. Tested out the pagination scroll disable filter via snippets plugin and it works great. Definitely good option to have for some sites.
But the pagination scroll effect is actually a very nice user-friendly feature (especially on mobile devices) as it saves users manually scrolling back to top of the list.
Really what would be GREAT is a setting in the plugin for the pagination auto scroll top-offset so that the list won’t go up past the sticky header if that is enabled on the user theme.
I also started a support thread with Blocksy devs and here was their suggestion/feedback on best solution. See most recent reply…
Thanks!
Thanks for the info. That makes sense. We can add a custom CSS .class to the element for the RSS feed display. Is there any Blocksy CSS class that exists which might do the trick to set the top-offset of the element vs. header when auto-scroll occurs?
I guess similar behavior to the Blocksy sticky sidebar, but it would only go into effect for the RSS element top offset if the pagination nav prev/next triggers the auto-scroll.
Probably too much to deal with here in this forum. But just wanted to bring it to your team’s attention because there are likely many other plugins that use a similar scroll back to top of the element type if button at bottom is clicked of feature…
Maybe we can trick the PREV/NAV buttons to go to a # html anchor in text just above the RSS list instead of just to the top of the list element…
Thanks