luiscastillocr
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Custom Post Template] No Dropdown in page editorI was wrong with something ??
I was confused with the wordpress page template functionality,so , the plugin is fine, my problem was that wordpress not shows the dropdown of templates for pages and i thought that the plugin has a conflict with this.
I found a simple solution for this
– select the default theme.
– logout
– login again
– select your theme and voilá the dropdown shows again!I hope this help to someone..
Forum: Everything else WordPress
In reply to: Use bloinfo() information inside the Page EditorI found a solution here
https://codex.www.ads-software.com/Shortcode_API
function get_siteurl($atts, $content=null) { return get_bloginfo('wpurl'); } add_shortcode('siteurl', 'get_siteurl'); function get_themeurl($atts, $content=null) { return get_bloginfo('template_url'); } add_shortcode('themeurl', 'get_themeurl');
Then in the content just write [themeurl] or [siteurl]
??
Forum: Everything else WordPress
In reply to: translationForum: Everything else WordPress
In reply to: translationForum: Themes and Templates
In reply to: Include or not the menu columns for each pageThanks for try to help me esmi, but your code posted above is not exactly the same thing that i found, anyway, thanks!!
by the way, do you know how to do the same thing with the categories page? ??
Thanks…
Forum: Themes and Templates
In reply to: Include or not the menu columns for each pageAfter research all the day i found the solution:
Here explain how add a custom template for pages and post-pages
Here is the plugin to manage the custom templates for the post pages
The dafault template file of post-pages is single.php
The dafault template file of pages is page.phpAdd this code for single-pages template at the top of the file
<?php /* Template Name: custom_simple_template_name */ ?>
Add this code for post-pages template at the top of the file
<?php /* Template Name Posts: custom_post_template_name */ ?>
I hope this help someone else.
Well i am looking for something like that for the category pages, if I find something, I will post it here
greetings…
Forum: Themes and Templates
In reply to: Include or not the menu columns for each pageThanks for trying to help, here I found a solution for the pages but i need something like that for a post pages too.
I am still looking for..
Thanks!
Forum: Themes and Templates
In reply to: Include or not the menu columns for each pageThanks for reply, but i need something more easy for my clients, i am still looking for, I’ll have to do it myself :P.
If someone knows something like i looking for please reply here!!