Mat Lipe
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to Remove Theme Header from One PageHello,
What is the website and page?Forum: Fixing WordPress
In reply to: Make galleries look like galleries on pageWhat is the website where this is being used?
Forum: Fixing WordPress
In reply to: Make galleries look like galleries on pageIf you go into your child theme files look for the file titled “loop.php”.
Inside the file on line 31 you will see the following code<?php the_excerpt(); ?>
Change that line to
<?php the_content(); ?>
Hope this helps.
Cheers
Forum: Fixing WordPress
In reply to: WP MenuIf you add this function to your child theme’s functions.php file it will add a “/” after every link in you menu except the last one.
function add_markup_pages($output) { $output= str_replace('</a>', '/</a>', $output); $output=substr_replace($output, "</a>", strripos($output, "/</a>"), strlen("/</a>")); return $output; } add_filter('wp_nav_menu', 'add_markup_pages');
Hopefully this helps
Forum: Fixing WordPress
In reply to: Make galleries look like galleries on pageHello,
Which theme are you using?
Please post a link to the theme. Most likely you will just have to change a function call to “the_except” to “the_content”.Hello Again,
I wanted to let you know that today I rolled out a new version of this plugin that now support categories. It formats them the exact same way as the pages with the same options in a new widget.
Along with a few other additions.
Enjoy.
Sorry the above example show have been pre formatted like so
ON page A * Page 1 ON page 1 * Page A * Page 1 * Page B * Page 2
Hello,
Is this the result you are getting?
ON page A
* Page 1ON page 1
* Page A
* Page 1
* Page B
* Page 2The plugin is designed to show the first level of child pages always and any lower levels only if you are on one of these child pages or lower. If Page B is on the Same level as Page A and that level is directly below the Top Level They will both display always.
I’m not sure how why Page 2 is showing up when You are are on Page 1. If Page A is the parent of Page 1 and Page B is the parent of page 2 but not a child of Page A, Page 2 Should not show up when you are on Page 1.
If this is happening, please send me a link to the site so I can take a closer look.
Cheers.
It’s hard to say what the future holds.
This week at the office we have been kicking around making a pro version of this plugin which will include a full styling interface and many other options, but we decided to shelf that idea to focus on some of our other projects.
For now, the best I can say is the future of this plugin is unknown.
Cheers
Hello Again cloudfe,
Try adding this to your stylesheet.
.advanced-sidebar-menu.widget ul li, .advanced-sidebar-menu li { padding: 3px 0; }
You can change the 3px to a larger or smaller number depending on how much space you would like.
Hope this helps!
Hello PaulHedges,
The plugin currently supports using the built in page order field to order the menu.
It functions the same way the main navigation used to before custom menus. It pays no attention to the custom menu order.
Let me know if you need some basic instructions on page orders. I will be happy to find/write a quick tutorial.
Good Morning ledlightingwholesale,
What is the IP of the server that has the site that is not working? I might be able to determine what is causing the issue if I point my browser to the broke n one and take a look.
Regards
Dpaule-
Currently the plugin only works for pages.
It’s not a bad idea to add category support and such.I may have to look into adding that on the next version.
CHEERS
Cloudfe –
Give this a shot. It should get you closer..advanced-sidebar-menu a, .advanced-sidebar-menu a:visited{ color: #257e9e; font-size: 12px; } .advanced-sidebar-menu.widget ul li, .advanced-sidebar-menu li{ list-style-type: square; list-style: square; } .advanced-sidebar-menu.widget ul{ margin: 0 0 0 18px; } .sidebar .advanced-sidebar-menu.widget{ background: #f1f1f1; padding: 15px 0 15px 15px; border: 1px solid dadada; }
Hello cloufe,
I took a look at the link you posted, but I could not find any styling on the page.
Please explain what you are looking for, and I will see what I can do.
Thanks.