Hi!
First of all I want to say that this plugin is great!
But I’m having a problem, when I activate the plugin in my wordpress page, the divi builder automatically does not work, it stays loading.
Would there be any way to solve this error and the divi constructor keeps showing up?
Thank you very much and greetings
]]>Hi there, I saw the plugin wasn’t 100% compatible with WordPress 4.6.1 but I gave it a try (on localhost) and it kind of works. The only thing missing (in my case) is the pages thumbnail (featured image). Any hack around to fix this issue? I guess I could just insert the thumbnail in the post instead of as the featured image but I’d need to change the css a little. Or if you say the previous plugin version is secure I could just leave it to 1.2?
Thanks!
]]>Dear all,
the “Page in Widget” plugin is great. Thank you for your job!
Ony one thing happens. We integrated this plugin on our webside https://www.dictateam.de and we choosed a page with bullet points on it. The problem is that the page on https://www.dictateam.de/gratis-angebot-ihre-kostenlose-diktier-app/ shows the bullet point, but the widget on https://www.dictateam.de does not shows the bullet points.
How can I solve the problem?
Hope to hear from you.
Best regards Claus
]]>Thanks for that little helper.
It think content filters should be applied before returning
$output = apply_filters(‘the_content’, $output);
]]>hello – I have used this very handy widget a few times however have recently noticed it will not work for blog pages.
ie – I created a page and chose the blog template for it. page works great when click via the main menu. but when I add this page to the ‘page in widget’ it simply shows up as blank.
is there a workaround for this?
thanks.
Mark.
]]>Hello
I’m having a problem. When I try to display site through widget (with your plugin) it doesn’t show <p> CSS custom rules. The problem is I would like to set different spacing between paragraphs. Now if I display text as ordinary WP site everything works, but when I try to put site through plugin (Page in Widget) the CSS rules disappears and I don’y see that custom spacing.
thank you in advance,
have a nice day,
Luka
Hi,
I’ve noticed that the Page in Widget plugin applies the the_content
filters to the page content before displaying it.
Some filter functions which are introduced by plugins rely on the get_the_ID() function of WordPress which does not return the page ID of the page embedded in the widget but the page ID of the page the user has requested. This breaks one of the plugins installed on my server, namely the 2 Click Social Media Buttons plugin.
I have modified your code as follows: I have exchanged this line of code
$content = apply_filters('the_content', $this->get_the_content($page, $more));
for these lines of code:
// Switch to this post
global $post;
$post_backup = $post;
$post = $page;
setup_postdata( $post );
$content = apply_filters('the_content', $this->get_the_content($page, $more));
// After filters have been applied, switch back
$post = $post_backup;
setup_postdata( $post );
That fixes the problem for me.
Greets,
Thomas
Hello!
Adding the below line after line 68 (echo $content;), adds an edit link for the page in widget. Could this be added to the next release?
Thanks
edit_post_link('Edit', '<span style="padding:3px 5px;background:#ccc;border:1px solid #888;">', '</span>', $page_id);
hi
i have to need on side bar limit the content about 150 character and read more link to full content page
plese help ..
thanks
]]>Great widget, I love it to bits…
Would you be able to help me edit your widget so that it can insert posts as well as pages, that is, the widget lists all the posts as well.
I know this isn’t for blogs with lots of posts (including custom post types) but I use posts for a cms setup and this would be very handy.
Thanks.
]]>Hi there,
I can only use the plugin once to display ‘one or more’ chosen website content/images. I would like to use the plug in for multiple widgets and be able to choose different pages to be displayed in these widgets. is it possible?
]]>I have installed a plugin, AWPCP, Another WordPress Classifieds Plugin, and I need to insert the Search page in a widget (because the initial search widget lacks of options).
I did it successfully with your plugin, but the issue is that the results of the search are displayed in the widget too, as in the page…
Is there a way to tweak your plugin (or the search form maybe) to get the results only in the page, and not in the widget (that would still display the search page) ?
Thx by advance for any help ??
The plugin installs and adds a “Page in widget” widget, which can then be placed into a widget area. After typing in a title and picking a page and clicking “save”, the page does not appear in the widget area.
I do seem to get a
<div id="sidebar"> </div>
which will break my valid html because we can have multiple widget areas on the same page…. but there is no content in it either.
How can avoid to the plugin inserts extra p and br? It should need an option like the on in the HTML widget, where you can avoit WP automatically inserts paraghraphs on line breaks.
]]>It works fine for a static page without any other plugins on it. But I’ve tried several sliders for example and it breaks the code. I’ve also tried other plugins like post loops and like 80% of the plugins that does completely different things breaks Page in Widget, which is a real shame, I really need this plugin ??
It breaks it in several ways. Either only the page title is displayed or a table on the page is messed up….
Please fix
]]>Hello,
if the widget is on sidebar, the widget doesn’t have a page list to select the page.
I suggest simple change to make this widget WPML ready:
I just added this lines after line 46
if ( function_exists('icl_object_id') ) {
$page_id = icl_object_id($page_id, "page");
}
]]>
If I could have a feature request, it would be to add the ability to use the page title for the widget title via checkbox option.
Thanks for a great little plugin.
]]>