Alex
Forum Replies Created
-
I agree with Hash73, only the first translation is working with WPML. All other languages don’t translate.
Forum: Plugins
In reply to: [WooCommerce] WordPress Dashboard WooCommerce Orders Page Sorting OrdersWe had the same issue, turns out it was because we were using SCPOrder plugin, you have to go into the setting for the plugin and uncheck “Order” post type
Forum: Fixing WordPress
In reply to: Switching to https:// causes loging redirect loop, mixed contentThank you for posting this fix, i had the same issue just recently.
Forum: Fixing WordPress
In reply to: Display static page content on blog page, above postsget_page is depreciated. This is better version:
<?php if ( get_option( 'page_for_posts' ) ) { $posts_page = get_post( get_option( 'page_for_posts' ) ); echo apply_filters( 'the_content', $posts_page->post_content ); } ?>
Forum: Plugins
In reply to: [Easy Digital Downloads - CSV Manager] Import of purchase history addresstry exporting some data first and look at the csv it generates, you should have all the fields there. Also if you have a lot of records you might want to split them up or the script will time out. For me i had to do it in batches of 900. Here is an older version of the plugin that worked for me and included my code https://secure.fabriceleven.com/vgXy
Forum: Plugins
In reply to: [Easy Digital Downloads - CSV Manager] Import of purchase history addresshere is a link to my payment history importer file https://secure.fabriceleven.com/13L8w i don’t remember what i modified but there where a few places. What message field are you trying to add? This will allow you to map addresses in purchase history
Forum: Plugins
In reply to: [Plugin Organizer] next pageI am also experiencing the same issue. The secondary pages are not matched even if fuzzy matching is turned on and plugins are selected in Post Type options.
RIght now to overcome i have to go into plugin filters > create a rule + enable “effect children” option. Of course per page settings override work as well
Ironically i noticed this while i was making a post that promoted this wonderful plugin ??
Forum: Plugins
In reply to: [Easy Digital Downloads - CSV Manager] Import of purchase history addressi added that functionality myself here is the modified payment history code, just edit the file here:
/plugins/easy-digital-downloads-csv-manager/includes/class.payment-history-importer.php
and paste this over:
[ Lines deleted, please use pastebin.com for that many lines of code ]
Maybe the author can add this into the main plugin ??
Forum: Plugins
In reply to: [Google Maps Retailers] Is this Plugin for international use.Yes currently it only supports united states
Forum: Plugins
In reply to: [Facebook] Thinner Likebox pleaseyou can just put
<style type=”text/css”>
iframe {
width: 200px !important;
height: 288px !important;
}
</style>right after your iframe facebook embed code. Of course if you are using iframes anywhere else on the page that will mess them up as well.
Forum: Plugins
In reply to: [Plugin Organizer] Enabling by Page not workingi am also experiencing a similar problem except everything used to work ok (selective loading worked fine) but now it doesn’t work. I have global disabled for some plugins set and selective loading doesn’t seem to work anymore. How can i troubleshoot this?
thank you for your help!