greeenkaos
Forum Replies Created
-
Forum: Plugins
In reply to: [Login Logout Menu] no box in edit menusSorry, no solution, just posting to confirm: Same issue here. There is no new box in the Appearance>Menus area.
Forum: Plugins
In reply to: [qTranslate X] qTranslate-X and Zemanta related postscan you recommend a related posts plugin that plays well with qtranslate?
Forum: Plugins
In reply to: [qTranslate X] qTranslate-X and Zemanta related postsHi again, I hate to be the bearer of negative news, but also qTranslate X is affecting the WordPress SEO plugin– it is making it so keyword analysis count for keywords in the post/page content is incorrect. I can live with this second issue, but thought you should know. Any news on resolving the original issue? I appreciate your assistance.
Forum: Plugins
In reply to: [qTranslate X] qTranslate-X and Zemanta related postsHi Gunu. I undid the alterations (uploaded fresh copy of latest plugin files), and found the ‘Compatibility Functions’ area in Settings > Languages > Integration. I checked the box. I cleared caches (turned off plugin caching for a while too) and waited a couple days, yet there are still posts with the [:en] prefix to article titles in the related articles display.
for example: http://goo.gl/tnVaVL
Still waiting for assistance…
Forum: Plugins
In reply to: [Email Manager] PHP7 compatibility?Resolved. Simply removing line 293 with ‘break;’ resolves the error.
} elseif (isset($attributes[__('archive', 'wpem')]) && intval($attributes[__('archive', 'wpem')])) { $settings = WPEM()->modules['settings']->settings['mail']; return '<a href="' . site_url('/?' . __('wpem_browser_mail', 'wpem') . '=' . $attributes[__('archive', 'wpem')]) . '">' . $settings['show_in_browser_text'] . '</a>'; break; }becomes
} elseif (isset($attributes[__('archive', 'wpem')]) && intval($attributes[__('archive', 'wpem')])) { $settings = WPEM()->modules['settings']->settings['mail']; return '<a href="' . site_url('/?' . __('wpem_browser_mail', 'wpem') . '=' . $attributes[__('archive', 'wpem')]) . '">' . $settings['show_in_browser_text'] . '</a>'; }Since editing I sent an email using a custom template… all seems to work as before.
Hi, unfortunately deactivating the plugin did not seem to revert the configs. I sent you the URL info via your contact form. Thanks for your assistance
Forum: Plugins
In reply to: [WP-EMail] Plugin breaks other formssame here. When WP-Email is enabled it breaks other forms on the site. When disabled, forms work again.
Forum: Plugins
In reply to: [Download Manager] Download Manager is Moving To Custom Post Typethough it looks like the Pro version has gone Custom Post Type, yes? http://www.wpdownloadmanager.com/wordpress-download-manager-pro-v4-0-0-has-been-released/
Forum: Plugins
In reply to: [Download Manager] Download Manager is Moving To Custom Post TypeYes, please start having downloads as their own custom post type… (installing latest version, so not sure if this is the case yet or not). As you touched on, soooo many benefits to Downloads as their own custom post type.
What’s the status of this?
Forum: Plugins
In reply to: NextGen "Sorry, NextGEN Gallery works only with a role called administrator"perhaps more importantly, leaving nextgen active breaks all widgets capability in multiple sites of my WP multisite. I’m just going to have to replace it in with a different gallery solution in every site.
Forum: Plugins
In reply to: NextGen "Sorry, NextGEN Gallery works only with a role called administrator"actually… the visual editor button is still not working. as mentioned, on other news, I’m not sure this plugin can work with multisite, as all minor fixes I’ve tried do not resolve the issues for child sites.
Forum: Plugins
In reply to: NextGen "Sorry, NextGEN Gallery works only with a role called administrator"just tried Version 2.0.63 and now the visual tab is working again.
(still getting the other seemingly WPmultisite issues: under Gallery > Add it says “[…]/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_addgallery_page/upload_images.php is not a valid MVC template”, which is a whole other issue)
OK, so here’s the deal. I HAD been using a conventional method for calling meta values:
$video2 = get_post_meta($post->ID, 'wpcf-video2', false);but if I switch to Types code for calling meta values:
$video2 = types_render_field("video2", array("raw"=>"true"));this solves the issue.
Forum: Fixing WordPress
In reply to: Types plugin and WP 3.6OK, thanks. To update this thread if it stays, it turns out the issue is not resolved. Types is still adding blank custom fields even if nothing is selected for the given custom field.