svart
Forum Replies Created
-
Forum: Plugins
In reply to: [ReOrder Posts within Categories] Case where post_id=0 in DBSeems resolved with a WP core update.
Forum: Plugins
In reply to: [WP Go Maps - Google Map, OpenStreetMap, Leaflet Map] Map not showing@jarryd-long : thanks for the feedback.
Forum: Plugins
In reply to: [WP Go Maps - Google Map, OpenStreetMap, Leaflet Map] Map not showingI have the same problem with a theme where I use the plugin with
echo do_shortcode( '[wpgmza id="1"]' );I guess the problem is that the JS are not added to the footer in that case.
If I add the shortcode in the page content, map is working fine.
Hi, Don’t know if you had solve your issue.
I had the same problem,or very close : basically, pages created by nextgen gallery admin don’t show up in admin, but appears on front-end menu.
Solution: use phpmyadmin or similar to access the database directly, find the ID of the pages you don’t want ; then back to the admin and open any page. Then in the adress bar, replace ID by the ID of the page to erase and hit enter to validate the URL.
You would there be able to put the page on the trash.
(you could probably delete the row in the database directly, but i usualy don’t mess with database content, you could try if you like !)
Forum: Themes and Templates
In reply to: How could I find template name used by a Page ?Ok, I finally find it by looking at the wp-includes/post-template.php
The value is stored in the meta-data of the post. It is logical.
We can retrieve it by the get_post_meta() function.
The code I use is so :
$PageTemplateName = get_post_meta($SubPage->ID, ‘_wp_page_template’, true);
The last part (, true) is there to retrieve a value instead of an array.
Forum: Plugins
In reply to: Plugin to publish all the pages in static htmlOk sorry, i found it (i just have to ask to found it)
If someone else looking : it is called really-static
(and another one called Blog Cacher could do the trick)