Using v 4.0.2
When logged in as ADMIN, the clicking “include” on left bar, I get a blank page. See screenshot
]]>
Hello.. I am getting it to show the title of the included page but not the content.. what might I be doing wrong? Even stranger it is reiterating the origin pages content in place of the include pages content.. in other words the page looks like this
Origin Page Title
Origin Page Content
Included Pages Title
Origin Page Content
This is strange right? Any ideas?
]]>When we attempt to update the plugin to 4.0.0, it crashes the entire site – no content is displayed, only a blank white page is loaded. Please help.
]]>Hi All,
when I include a page on another page, the tag of the latter will be replaced by the included page tag.
So, if in the page “A” (with “a” tag) I include the page “B” with “b” tag, then the page “A” is displayed (with the content of the page “B” and) the “b” tag, and only with this tag (i.e., the “b” tag is not added to the page’s tag but replaces it entirely).
Thanks.
JR
Hello,
My WordPress is in both French and English using Polylang. When a specify
a post to include (by id or by slug), the actually included page is the translation of the requested post into the current/includer page language.
Is there a way to tell the Include plugin to include by is/slug without going across the polylang translation engine?
Brice
Hello, I have the case where I have to do multiple include, such as :
Page A: [include page B]
Page B: [include page C]
Page C: [include page D]
...
I had a bug with displaying the title of the “next page’s” title, it was always displaying the “Page A” title.
to fix it, I replaced around line 107
get_the_title()
by
get_the_title($id)
Everything else is working fine, thank you
]]>Have I got this wrong…
I can include a page by passing the ID, but not a post…
So changing this gets it to work – a hack; I’m sure there’s a more elegant way of doing it
// query_posts(array('page_id' => $id));
$post_type = $wpdb->get_var("SELECT post_type FROM {$wpdb->posts} WHERE ID = '{$id}'");
if ($post_type == 'page')
query_posts(array('page_id' => $id));
else if ($post_type = 'post')
query_posts(array('p' => $id));
else
return $r;
the_post();
]]>
Hello Include Team,
I need to duplicate the content of a page generated “on the fly” by an Easy Digital Downloads taxonomy plugin, EDD Features:
https://www.ads-software.com/plugins/edd-download-info/
Example [one of dozens]. This result looks exactly the way I want it to look:
https://bazaar.typeheritage.com/downloads/feature/1870s/
The next step is to include the same display after text on a standard WP page that would look like this demo:
https://bazaar.typeheritage.com/display/period/1870-1880/
Unfortunately, the widget author has not developed a shortcode for this purpose. I have tried a dozen [or so] query plugins, and none of them can do what I need. One outputs only a list; another outputs *all* posts with *any* EDD Feature assigned to it; the rest were inappropriate.
I’m excited to think that the solution is near! The Includes plugin sounds as if it can handle the job by referencing the post ID. The ID for the example is 191. I tried entering [include id="191"]
in the text editor. It didn’t work…
This shortcode is much more complex than the ones I’ve used successfully, so I may need help with the parameters. Also, what Title Class and Wrap should I specify in the settings?
Please pardon my ignorance and teach me how to make it work.
Thank you for raising my hopes, Anna
]]>Hi there,
Experiencing an issue activating this plugin, I had installed it on another site abuot 2 weeks ago, but now when migrating the site to its new domain it wont let me activate.
This is a fresh install of wordpress and I have not imported any other data, I am only currently installing the needed plugins. This is the error message I get when I try and activate it:
Plugin could not be activated because it triggered a fatal error.
Parse error: syntax error, unexpected T_FUNCTION in /home/www/gangesyogastudio.com/wp-content/plugins/include/panel.php on line 2
I have tried uninstalling all other plugins and also uninstalling it and trying again, I have manually added it via FTP and via the browser. I have gone in and repaired my wp_options table via PHPmyadmin as suggested in a previous post that seems similar to this issue.
I have also tracked down the panel.php file and had a look on line 2 but I am not sure what I am looking at really or where to begin determining what the issue might be? I guess I am stumped, as this is a clean unaltered version of wordpress that was only installed about 30 mins ago.
Thanks for any help!
]]>Hi, can it be used to include a page created with Optimizepress?
Thanks,
Damian
Hi guys, this looks like exactly what I need… but
I’m using shortcodes ultimate for my tabs, and trying to load a product page from ithemes exchange (which may be dynamic I just realized as I type) into a tab.
my page: ‘englishw5.com/live-lessons-hub/#p2’ under the “Policies” tab which is otherwise empty
the page I want to load into the tab content: ‘https://englishw5.com/product/lessons-in-conversation-private/’ and want to do this for every tab.
Is it possible? I can only get your shortcode to show up, or now that I’ve removed parameters, nothing shows up.
Thank for your help, ron
]]>Hello
I just moved a site and now this plugin will not activate. I have remove it, and re-installed it. I go no error message – it just remains inactive.
Please help
]]>Just upgraded to latest version of plugin. Array syntax with [ ] is only supported on PHP 5.4 and higher. Both inlcude.php and panel.php are impacted. I’ve updated them to use the more widely compatible array() syntax and everything works fine.
]]>Hi,
Commenting out the line in include.php:
apply_filters(‘the_posts’, array()); // TODO: Find out if this does anything, remove it if it doesn’t
resolves the error that’s generated on our site:
Warning: Missing argument 2 for _close_comments_for_old_posts() in .../public_html/wp-includes/comment.php on line 2397
Hope that helps anyone else who is having the issue.
]]>