ParsMizban
Forum Replies Created
-
Forum: Reviews
In reply to: [Advanced Classic Editor] Nice pluginThank you , You will see many more features soon
Forum: Plugins
In reply to: [Online Payment for Bank Mellat] ????? ????? ?????????
??? ?????? ?? ?? ?? ?? ????? ????? ???? ?? ????? ???Forum: Plugins
In reply to: [Online Payment for Bank Mellat] warning file_get_contents???? ?? ??
Forum: Fixing WordPress
In reply to: Cannot change search widget text font in twentyfifteenI found the problem ,
I used ::-webkit-input-placeholder beside another styles and was changed it’s font
It is related to that text box font
But I separate it from another style and changed it’s font
Now it is ok, the text box font changed
I didn’t attention to this comment which :/* Placeholder text color — selectors need to be separate to work. */
hmmmm…… ??
Forum: Fixing WordPress
In reply to: Cannot change search widget text font in twentyfifteenok, let me i upload the theme exactly…
Forum: Fixing WordPress
In reply to: Cannot change search widget text font in twentyfifteenI am using on localhost for now, But I couldn’t change it at all
Can you just do a try?
It’s twentyfifteen theme !Forum: Fixing WordPress
In reply to: Cannot change search widget text font in twentyfifteenHi,
I am familiar with theme development, But this is very strange for me
I couldn’t change the font of “Search…” text in text box of search widget
Just check it in latest version of ‘twentyfifteen’ theme
Can you do that?!????
??? ???? ?????? ?? ????Forum: Plugins
In reply to: [WooCommerce] Display in stock products in top of out of stocksI used this code:
<?php /** * Order product collections by stock status, instock products first. */ class iWC_Orderby_Stock_Status { public function __construct() { // Check if WooCommerce is active if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) { add_filter('posts_clauses', array($this, 'order_by_stock_status'), 2000); } } public function order_by_stock_status($posts_clauses) { global $wpdb; // only change query on WooCommerce loops if (is_woocommerce() && (is_shop() || is_product_category() || is_product_tag())) { $posts_clauses['join'] .= " INNER JOIN $wpdb->postmeta istockstatus ON ($wpdb->posts.ID = istockstatus.post_id) "; $posts_clauses['orderby'] = " istockstatus.meta_value ASC, " . $posts_clauses['orderby']; $posts_clauses['where'] = " AND istockstatus.meta_key = '_stock_status' AND istockstatus.meta_value <> '' " . $posts_clauses['where']; } return $posts_clauses; } } new iWC_Orderby_Stock_Status; ?>
Forum: Plugins
In reply to: [WooCommerce] Display in stock products in top of out of stocksHi,
Why this way?
This is a very basic settings, Why we can’t sort by availability?
I have an eshop with 30,000 products, There are many products which I want to display them in bottom because of out of stock, But I don’t want to miss them for SEO mattersForum: Plugins
In reply to: [WooCommerce Sort By Stock] display in stock but no quantity@byanofsky
How can I do that for front-end ? Do you have any hint?
Thank youForum: Plugins
In reply to: [WooCommerce Sort By Stock] display in stock but no quantityHi Byanofsky,
Thank you for your replyis your plugin for front-end or back-end?
I need this for front-end
Thank youForum: Plugins
In reply to: [Subscribe To Comments Reloaded] May I see emails in RTL format?Hi,
I edited the DOCS and described more here:
https://codex.www.ads-software.com/Right-to-Left_Language_Support#Special_CasesForum: Plugins
In reply to: [Subscribe To Comments Reloaded] May I see emails in RTL format?Hi, I installed your plugin,
In order to full compatibility of RTL, it is better to assign unique id or class for each input fields,
For example : email, telephones, zip codes, codes, URLs and any input contains English letters and numbers, should not be RTL,
So if you assign an ID or a class to those input fields, you can make those fields LTR in a RTL language by assigning a direction of ltr to them:Example:
File: rtl.css /* These fields should be LTR in a RTL language direction */ .email-address1, .tel-number1, .zip1, .url-address1, ... { direction: ltr; }
Forum: Themes and Templates
In reply to: customizr theme wpml RTL make the body go leftAsk your problem here:
https://www.ads-software.com/support/theme/customizr