Anthony Carbon
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin Organizer] Woocommerce conflict on plugin organizercool, thanks jeff .. I’ll let you know if the error is still not fix.
Thanks,
AnthonyFree version is already looking good, no admin settings available. It is linked to the publisher page to buy pro version.
??
- This reply was modified 7 years, 11 months ago by Anthony Carbon.
Forum: Plugins
In reply to: [WooCommerce] Email is not sending after paypal payment is complete@anphira, thank for the tips.
Thanks Stephen Edgar ..
Hi vdberg and Visser Labs,
I increase the z-index to to 999999 and issue is solve ?? . Thanks ..
Hi Visser Labs,
Same here, I used Chrome on my end. No jQuery errors or conflict issue.
Hi YITHEMES, I’m using it here https://mytacticaloutdoors.com/, but currently, I remove the filtering on shop which I have the issue.
Forum: Fixing WordPress
In reply to: The7 themes, header is missing on the mobile device.Thanks James Huff ..
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Get total wishlist via ajaxForum: Plugins
In reply to: [YITH WooCommerce Wishlist] Get total wishlist via ajaxThank you sir YITHEMES .. this is working perfectly ..
Hi bryceadams.. Thanks for the reply. I tested your codes but its not working on my end. According to this code below, which I found on the inner core of the WP job board ( wp-content/plugins/wpjobboard/framework/Validate/StringLength.php ) and it says the maximum string (
$this->_max
) is 120.class Daq_Validate_StringLength extends Daq_Validate_Abstract implements Daq_Validate_Interface { protected $_min = null; protected $_max = null; public function __construct($min = null, $max = null) { $this->_min = $min; $this->_max = $max; } public function isValid($value) { $result = true; if(!is_null($this->_min) && strlen($value)<$this->_min) { $this->setError(__("String is to short", "wpjobboard")); $result = false; } if(!is_null($this->_max) && strlen($value)>$this->_max) { $this->setError(__("String is to long", "wpjobboard")); $result = false; } return $result; } }
But I don’t know how to increase the
$this->_max
. Let’s say I want it to make 240 instead of 120. Anyway thanks for the help bro, very appreciated.Forum: Plugins
In reply to: [Weather Underground] The location could not be found after updateI have the same issue. On my development it is working perfectly but after transferring to the live site, this is the results.
The location could not be found
I have 1 & 1 server.
Forum: Plugins
In reply to: [WP Job Manager] Job Description FieldBrothers, this one is working ..
echo $job->job_description;
But make sure you are editing inside the job.php file.
Thanks Scott Basgaard. I have tried
get_the_content(); or the_content();
But it doesn’t work. Thanks for the effort brother, very appreciated.
Forum: Plugins
In reply to: [WP Job Manager] Job Description FieldHi brothers .. i need help on how to get each of the job description. I’m currently editing the job.php file of wpjobboard core.
Please brothers .. help me if you have any idea out there.
Forum: Plugins
In reply to: [WooCommerce] Missing reviews tab and sharing buttonsYou can also use loro’s code to check if the tabs is exist
if ( isset( $tabs['reviews'] ) ) { $tabs['reviews']['priority'] = 10; }