Forum Replies Created

Viewing 8 replies - 76 through 83 (of 83 total)
  • Plugin Contributor OnPoint Plugins

    (@onpointplugins)

    Hi Chillmen,

    The is no built in way to do this with the Basic version however with a little CSS the PRO version does do this.

    More info here.

    Have a great weekend!

    OnPoint Plugins

    Plugin Contributor OnPoint Plugins

    (@onpointplugins)

    Hi Richard,

    Looks like we’ve already got you covered over here. Awesome!

    OnPoint Plugins.

    Plugin Contributor OnPoint Plugins

    (@onpointplugins)

    Hi Kleymc,

    If you would like to receive priority support, you may purchase it individually or simply purchase the PRO version of the plugin.

    Otherwise, we can try to support you through here as time allows.

    First off, can you point me to where I can see the 503 error? I went to the site you have listed, and it appears to be working.

    Have a great day!

    Hi Ziva77,

    Creating a super basic drop down menu with for the links may be done by following the example on W3 and modifying it include the links in the output. Like so:

    <style>
    			.dropdown {
    				position: relative;
    				display: inline-block;
    			}
    
    			.dropdown-content {
    				display: none;
    				position: absolute;
    				background-color: #f9f9f9;
    				min-width: 260px;
    				box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    				padding: 12px 16px;
    				z-index: 1;
    			}
    
    			.dropdown:hover .dropdown-content {
    				display: block;
    			}
    		</style>
    
    		<div class="dropdown">
    			<span>Mouse over me</span>
    			<div class="dropdown-content">
    				<?php
    				$links = new SimpleLinksFactory( [], 'shortcode' );
    				echo $links->output();
    				?>
    			</div>
    		</div>
    1. You may add the provided code anywhere in your theme that you would like the dropdown to display and the links will be hidden until you mouse over “Mouse over me”.
    2. You may move the provided styles into your theme’s stylesheet or leave in place and modify however you would like.
    3. You may change the text “Mouse over me” to whatever text or content you would like.

    Have a great day!

    OnPoint Plugins

    Hi Nicklas,

    This is possible by adding the following filter to your active theme’s functions.php:

    add_filter( 'simple_links__output', function ( $output ) {
    	$output .= '<ul class="simple-links-list">
    					<li class="simple-links-item simple-links-fixed">
    						<a href="https://somewhere.com/some-page">
    							Fixed Link
    						</a>
    					</li>
    				</ul>';
    
    	return $output;
    } );
    1. You will need to change the href to where you want this link to go.
    2. You will need to change “Fixed Link” to the link text you would like.

    Have a great day!

    OnPoint Plugins

    Plugin Contributor OnPoint Plugins

    (@onpointplugins)

    Hi Tsjippy,

    This is possible by adding the following filter your active theme’s functions.php file:

    add_filter( 'advanced-sidebar-menu/menus/page/is-displayed', function ( $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;
    }, 10, 4 );

    Have a great day!

    Plugin Contributor OnPoint Plugins

    (@onpointplugins)

    Good Morning Ericbrouwer,

    Thank you so much for thing the header to my attention. While not particularly harmful, it turns out there was an extra directory in the Subversion repo which was confusing the plugin handler. This has been patched in version 7.6.4.

    As far a a settings page goes, this plugin does not require any settings outside of the widgets. Everything may be managed within the individual widgets.

    Have a great weekend!

    Hi Cmsnegar,

    The reason that link does not work is the escaping is a bit strong and does not handle special encoding very well.

    I went ahead and made some updates to the escaping to handle special encodings better. I also added a new filter called ‘simple-links/meta-boxes/meta-save/value’ just in case more flexibility is needed.

    Version 4.6.6 is now available which will work better for you.

    Have a great day!

Viewing 8 replies - 76 through 83 (of 83 total)