Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 647168 bytes) in /membri/ricercaperditeacqua/wp-includes/functions.php on line 4669
When the plugin is disabled, however, I can correctly see the list of pages.
Thank you.
]]>Thanks!!
]]>https://songdove.fa-ct.com/wordpress-mu/songdovemusings/shop/
Where do I go in the shop settings to disable the shop’s search bar and stop it from displaying my site’s entire list of pages?! No other plugin has done this so far, just jigo shop.
I’m wanting to use jigo shop with the Affiliates and Mailpoet integrations. Jigo works with my desired theme far better than woocommerce did. I’m just surprised at the shop’s psuedo-footer behaviour.
https://www.ads-software.com/plugins/jigoshop/
]]>It also continues to display older versions of the widget.
Let me know if there any problems.
https://www.ads-software.com/plugins/page-hierarchy-plug-in/
]]>This code works great to list all the pages of a section (all the child pages)
<ul>
<?php
if($post->post_parent == 0)
{
wp_list_pages("title_li=&child_of=".$post->ID."&show_date=modified&date_format=$date_format&location=sidebar&sort_column=menu_order");
}
else
{
wp_list_pages("title_li=&child_of=".$post->post_parent."&show_date=modified&date_format=$date_format&location=sidebar&sort_column=menu_order");
}
?>
</ul>
But I have one or more selections created in the Menu that are links that show up in drop down menus, but since a selection is not a page it will not show up with the above code which displays child pages of a current section.
Other than creating a custom menu and adding it to the sidebar, is there any handy dandy code that I can use to generate a page/link list falling under a parent?
Thanks!
]]><h2><?php _e('Pages', 'hemingway'); ?></h2>
<ul class="pages">
<?php wp_list_pages('title_li='); ?>
</ul>
here’s a link [it’s in Hebrew]:
https://ms.somethingperverted.com/links/
here is what i want:
1. currently the list shows pages according to their order number, and i want to reverse the list. i want it to show newest pages, or pages with a larger number first, and older pages, or pages with a smaller number last.
2. currently the list shows all of my pages in the same list, and i want it to split the list to different pages. i want it to show only 15 pages at a time, and a “previous / next” button in the bottom, for lists of older or newer pages.
if anyone knows how to do it, i’ll be very thankful.
thankS
:-]
$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0&depth=1&menu_order=sort_column");
but what I want is to be able to build a non-hyperlink list like this:
<h2>Page 1</h2>
<h2>Page 2</h2>
<h2>Page 3</h2>
can anyone advise on how to do this?
thanks
Matt