@anansi.pro
Forum Replies Created
-
Forum: Plugins
In reply to: [Post Connector] Polylang (WPML) compatibilityGot official reply from plugin support
I regret to inform you that we have not thoroughly tested our plugin with either of those plugins. We have a 30 days refund policy in case you wish to test it, Within 30 days of purchase date you can ask us for a refund for any reasons.
Forum: Plugins
In reply to: [Post Connector] Polylang (WPML) compatibility+1 I’d love to see the answer too.
Forum: Fixing WordPress
In reply to: How to Disable Visual Editor in The Text WidgetForum: Fixing WordPress
In reply to: How to Disable Visual Editor in The Text Widget@nowordneeded
Have you tried the code I provided?
It keeps your custom code in widget intact, at least on my client website, which was just updated to 4.8.you can also use this filter in functions.php, although I did not tested that.
remove_filter(‘widget_text_content’, ‘wpautop’);You may also want to disable Rich Edit completely in widgets, I am working on solution to this.
Forum: Fixing WordPress
In reply to: How to Disable Visual Editor in The Text Widget@nowordneeded
You can remove automatic paragraphs in widgets by adding this code to your theme’s functions.phpadd_filter( 'widget_display_callback', 'clean_widget_display_callback', 10, 3 ); function clean_widget_display_callback( $instance, $widget, $args ) { $instance['filter'] = false; return $instance; }
Look into functions.php for custom excerpt implementation that may very well sit there.
Forum: Developing with WordPress
In reply to: Can I design a wordpress site via IP before pointing DNSYou technically can. But downside is – production can choose another hosting. It is better to use Gas Mask or Hostman to manage local hosts file for pointing domain to the ip of choice locally. Your peers can do the same. This way once you get into production, everything will be bound to domain name, irrespective to IP.
Forum: Localhost Installs
In reply to: which is best for localhost wordpress installationThese days you should try Docker way.
Installing local WordPress with DockerForum: Plugins
In reply to: [Featured Video Plus] How to check if featured video is attached to post?Figured it out. has_post_video() returns boolean value, so it worked in the end.
Thanks to author for providing such a useful function.- This reply was modified 8 years, 2 months ago by @anansi.pro.
The answer is here. https://github.com/rilwis/mb-yoast-seo/blob/master/demo.php
Forum: Plugins
In reply to: [Plugin Name:Woo Quick Order Table View] Does table view support pagination?Cheers for that! Will check.
Forum: Plugins
In reply to: [Polylang] Redirect language to default with htaccessHave you accomplished that?
Forum: Plugins
In reply to: [BackUpWordPress] wp-content is Excluded with no optionsThank you, that worked. One minor bug, not affecting functionality persists. If I manually remove large files in backed up directory, plugin does not detect new folder size and reports backup size estimation wrong way.
Forum: Plugins
In reply to: [BackUpWordPress] wp-content is Excluded with no optionsHere you are. The plugin is fresh 3.6.2, as you can see here wp-content folder is not in explicit exclusion list, but it is excluded, which is not that desired. What os worse, there is no way to unexclude it.
Can the bug sit in ruling around default exclusion of backups folder, that is child of wp-content?
- This reply was modified 8 years, 4 months ago by @anansi.pro.
+1, I need that too.