realC
Forum Replies Created
-
Forum: Plugins
In reply to: [EDD Downloads As Services] Using WPML service categories issueThe final answer ends up being so much simpler than all this. Simply select all languages when making modifications to the categories that are to be selected as services. Categories from all languages will be displayed, made selectable and saved. It works perfectly. No code had to be modified.
Forum: Plugins
In reply to: [EDD Downloads As Services] Using WPML service categories issueYou may also have to add the following as above:
remove_filter( ‘list_terms_exclusions’, array( $sitepress, ‘exclude_other_terms’ ), 1 );code ….
add_filter( ‘list_terms_exclusions’, array( $sitepress, ‘exclude_other_terms’ ), 1, 2 );
Forum: Plugins
In reply to: [EDD Downloads As Services] Using WPML service categories issueI found a way to fix this. Not perfectly elegant, but does the job. The categories from all languages will show up in the settings. You can select all the one’s you like. I had to change the pluggin code to: (notice the two remove_filter and the two add_filter lines)
public function settings( $settings ) {
global $sitepress;
remove_filter(‘get_term’, array($sitepress,’get_term_adjust_id’), 1, 1);
remove_filter(‘terms_clauses’, array($sitepress, ‘terms_clauses’));$new_settings = array(
array(
‘id’ => ‘edd_das_header’,
‘name’ => ‘‘ . __( ‘Downloads As Services’, ‘edd-das’ ) . ‘‘,
‘type’ => ‘header’
),
array(
‘id’ => ‘edd_das_service_categories’,
‘name’ => __( ‘Select Service Categories’, ‘edd-das’ ),
‘desc’ => __( ‘Select the categories that contain “services”‘, ‘edd-das’ ),
‘type’ => ‘multicheck’,
‘options’ => $this->get_terms(‘taxonomy’)
),
);add_filter(‘get_term’, array($sitepress,’get_term_adjust_id’), 1, 1);
add_filter( ‘terms_clauses’, array( $sitepress, ‘terms_clauses’ ), 10, 4 );return array_merge( $settings, $new_settings );
}Forum: Themes and Templates
In reply to: [Delicate] Post separator/dividerIt is actually the bottom border, thank you very much, I was sure I had tried that one.
Forum: Themes and Templates
In reply to: [Delicate] Post separator/dividerYou can go to http://www.patrimoinepointeclaire.org/ssppc_dev/ under home or under Press Review. The line is barely viewable between posts. I have been able to create a darker line, but always above or bellow that one.
Forum: Reviews
In reply to: [Category Wise Search] Does exactly what it says on the tin!Would you share the css code you used to his the uneeded information?
Forum: Plugins
In reply to: [WooCommerce] Digital product listMy problem is that the site will offer digital products and more traditional products such as historical calendars, Christmas cards, booklets, etc. I am attempting to find a way to use Woo for Digital products in a list form and to have the more standard look and feel for tangible products. If I can find out more about customizing the form, I might be able to trigger another look and feel based on the product (ie: digital products).
Forum: Plugins
In reply to: [WooCommerce] Digital product listDoes anyone look at these????