OnPoint Plugins
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Sidebar Menu] Accordion icons only appear when logged in (PRO)Hi Formos,
We are unable to provide support for PRO products using these forums.
Please head over to the support area to receive priority support.Have a great weekend!
Forum: Plugins
In reply to: [Advanced Sidebar Menu] Critical error on your websiteHello,
The plugin classes now use namespaces which match their original name. Basically, you replace
Advanced_Sidebar_Menu_
withAdvanced_Sidebar_Menu\
for any top level classes, and replace any sub directory names with a\
instead of_
.In this example,
Advanced_Sidebar_Menu_List_Pages
is nowAdvanced_Sidebar_Menu\List_Pages
.add_filter( 'advanced-sidebar-menu/menus/page/is-displayed', "custom_harmsen_display_children_menu", 10, 4 ); function custom_harmsen_display_children_menu( $display, $a, $i, $current_menu ) { $child_pages = \Advanced_Sidebar_Menu\List_Pages::factory( $current_menu )->get_child_pages( $current_menu->get_top_parent_id(), true ); if ( count( $child_pages ) === 1 ) { $current_page = $current_menu->get_current_post(); if ( null !== $current_page && reset( $child_pages )->ID === $current_page->ID ) { return false; } } return $display; }
Have a great day!
Forum: Plugins
In reply to: [NSFW] [Advanced Sidebar Menu] Keep getting errors and “page not found” !?Hello Gunner,
It appears you are using the PRO version of this plugin. I have created a priority support request for you.
See you over there.
I am seeing a couple strange widget settings
user-restriction-type: "1" wpfront-user-role-editor-widget-permissions-data: type: 1
Perhaps the widget is only showing to logged in users?
Forum: Plugins
In reply to: [Advanced Sidebar Menu] Too few itemsHello marten2,
By default the page widget will limit pages to 100. You may increase this limit by adding the following filter to your active theme’s functions.php
add_filter( 'advanced_sidebar_menu_list_pages_args', function( $args ) { $args['posts_per_page'] = 500; return $args; } );
For the sorting, this is handled by your MySQL collation which most likely needs to be set to
utf8mb4_swedish_ci
. MySQL changes are beyond what we can guide you through as basic version user, but doing a search online will provide some results.Hope this helps!
Hello cbhtcomputers,
I took a quick look at the page you provided and it appears no sidebar is rendering at all. I tried in Edge with the same result. If you are seeing the sidebar in some browsers it could be a page cache issue. Otherwise, the next thing to check is if the theme supports sidebars correctly.
Hope this helps!
Hi Rsadiku,
Most likely the data generated by the plugin you are using was some kind of serialized or JSON data. Unfortunately, only the PRO version supports these kinds of data within custom tables.
You may restore your database from a backup. Otherwise the following process may work depending on what has been saved since you ran the plugin:
- Check all the tables your originally checked
- Run the tool again, this time put the Old URL in the New URL field and the New URL in the Old URL field
- Check only the tables which are safe to update
- Run the tool again with the correct settings
Hope this helps!
OnPoint Plugins
Forum: Plugins
In reply to: [Go Live Update Urls] Not working for migrated GoDaddy siteHello,
If Better Search & Replace is not finding any occurrences of the domain, it is likely there is another variation of the domain stored in the database. Better search and replace won’t be able to handle the data types like this plugin does, but it should at least find them.
A place to start is to double check the “siteurl” value of the
wp_options
table in the database. If you have access to WP CLI, you may also retrieve this value by runningwp option get siteurl
.Hope this helps!
Hello Tcostanza,
This plugin does not have a widget with an id ‘advanced_sidebar_menu_page’. I traced back through the code to all the way to 2015 and was not able to find any reference in the past of that id. If it existed, it was before 2015.
Most likely this was a widget introduced by another plugin or a filter/extension of some kind.
To resolve you issue you may remove the missing widget in favor of the Advanced Sidebar widget you would like to use.
Have a great day!
Forum: Plugins
In reply to: [Advanced Sidebar Menu] Hide in-your-face advertisingHello,
There is currently no way to turn off the information pane in the free version.
Have a great weekend!
Forum: Plugins
In reply to: [Advanced Sidebar Menu] Widget is not workingHello,
It appears you may be looking for the menu on the home page of the or not on a “category” page. The Category widget will only show on category pages.
Here is more info from the FAQs.
Forum: Plugins
In reply to: [Advanced Sidebar Menu] Widget Does Not Appear to the PageHi bentraje,
Sounds like the widget you are looking for is the Navigation Menu Widget which is available only on the PRO version.
Have a great day!
Forum: Plugins
In reply to: [Advanced Sidebar Menu] Page Builder Section | No more text viewHi Jolita,
This plugin does not control the visual/text views of the page editor.
Based on what you have provided, it sounds like there is a JavaScript error of some sort that is causing your issue. If you check your browser console it may give you some idea of what the issue is.
Hope this helps!
Forum: Plugins
In reply to: [Go Live Update Urls] Serialized contentHi Luka,
This plugin does support serilized content within any of the WordPress core tables. If you have serilized content within custom tables created by plugins, you’ll need to PRO version to support them.
Have a great day!
Forum: Plugins
In reply to: [Advanced Sidebar Menu] Embed sidebar menu via shortcodeHello,
While this would certainly be possible by creating a micro-plugin or some custom code in the theme, shortcode support is not currently built into this plugin.
Have a great day!