wpmigo
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Importer] plugin is not importing menus@luke Cavanagh, yes, the problem happens only on PHP 7.
As @quirkymaz mentioned the solution can be found in this thread until the next version of the Importer is released: Menu not imported in PHP Version 7.0.8If you just copy and paste the ‘Аэрофлот’ in the search field, then you need to delete 1-2 character from the beginning or the end because the search result options are triggered on change.
And the code that returns the Ajax request does nothing fancy.
It just outputs a few shortcodes. And other shortcodes are working fine, only the ‘nggallery’ has issues.I understand that it is difficult to provide a solution if this is not a common issue and you don’t have access to the code.
If you need any info that may help you, let me know.—
AlexHi Cais.
Thanks for the reply.
Check please the info below:Page URL:
https://samolety.org/search/Search for ‘Аэрофлот’ and select from the dropdown the given result https://i.imgur.com/l7na8lj.png
Then click on the first plane: https://i.imgur.com/f3RsV4o.png
And the result is like this: https://i.imgur.com/08eFo96.png
Hi there.
We are having the same issue.
We are using a custom theme without any plugins beside NextGen Gallery, and when trying to load a gallery via Ajax, it outputs the raw shortcode.The plugin version is 2.1.46
The function that proceses the Ajax request returns something like this:
echo do_shortcode('[nggallery id='.$gallery_id.']');
Any ideas what can be done to solve this issue ?
Thank you,
AlexForum: Plugins
In reply to: [wpMandrill] Contact Form 7 Mandrill Issues: Force Native Emails?We are experiencing the same issue with a plugin that uses wp_mail function.
Basically when wpMandril is installed, wp_mail() returns false even though the emails go through.
Is there any way to fix that ?Thank you.
Never mind.
I fixed it by adding ‘download_file’ to the pages that are not cached and it fixed it.
https://i.imgur.com/RNThTTm.png
—
AlexForum: Fixing WordPress
In reply to: Media Library Blank (Empty)I had the same issue.
In brief, I uploaded pics in my post, I save as draft or publish it and then when i’ll come back on the same post, when I click to open the media library for this post, the pics have disappeared.
I found that it was a problem with the theme I was using. It was related to ‘pre_get_posts’ filter.
The original code was like this:
and I added attachments by replacing this line:
$post_type = array(‘post’);
with this one:
$post_type = array(‘post’,’attachment’);
Hope this will help someone.