rozv
Forum Replies Created
-
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] podpress supportHi, yes I tried that but it didn’t work. I think that might be because I don’t have the PodPress plugin anymore. And I couldn’t find it available to download anywhere because it is so old.
Thanks
Forum: Plugins
In reply to: [WooCommerce Shipping & Tax] Taxes when shipping to USA show as zeroalso, the calculations are working fine on my staging site, but not on the live site…
sorry nevermind, i accidentally had standard rates on my staging site. US tax rates are not working on either site- This reply was modified 3 years ago by rozv.
Forum: Plugins
In reply to: [WooCommerce Shipping & Tax] Taxes when shipping to USA show as zeroI also have the same problem with store based in CA but USA purchases show 0 tax. @jansproing and @andreu did you find a solution that worked? Thanks!
Forum: Plugins
In reply to: [Invoices for WooCommerce] Refunded ItemI had the same issue, but I edited the plugin file to allow pdf update after it has been sent. The plugin file — includes/woocommerce-pdf-invoices.php on line 743 says “PDF invoice should not be changed when it has been sent to the client already.” If you comment out the
if ( ! $is_sent ) {
and the closing bracket on line 766}
then you will see the update and delete buttons when viewing the order in the admin dashboardForum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Export individual quantitiesWow, thank you very much!
@contactjavas thank you for all your help! after trying different things, it worked as a separate plugin. thanks!
hello,
I am having the same issue with whitelist filter not working.my functions.php
add_filter( 'jwt_auth_whitelist', 'my_endpoints' ); function my_endpoints($endpoints) { $endpoints[] = '/wp-json/test/'; return $endpoints; }
testing in the plugin file class-auth.php i put a var dump and the whitelist is still empty. some how not applying the filter
$whitelist = apply_filters( 'jwt_auth_whitelist', array() ); var_dump($whitelist);
i also tried with the jwt_auth_default_whitelist filter, but it didn’t work either.. Any help would be appreciated! thanks!
Forum: Developing with WordPress
In reply to: Login a WP user via REST APIHi @dreamon11 , i’m wondering how did you end up setting the auth cookies exactly? I am having the same issue although I am using the rest api inside the wordpress theme on the same domain.. a react wordpress theme. my endpoint looks very similar to what you posted. Thanks!
Forum: Plugins
In reply to: [Raw HTML] raw with strip_shortcodesthanks for the quick reply. yes i am using a different way of generating the excerpt with a custom function
/* Function -- Get excerpt by post id */ function get_excerpt_by_ID($post_id){ $the_post = get_post($post_id); //Gets post ID $the_excerpt = $the_post->post_content; //Gets post_content to be used as a basis for the excerpt $excerpt_length = 35; //Sets excerpt length by word count $the_excerpt = strip_tags(strip_shortcodes($the_excerpt)); //Strips tags and images $words = explode(' ', $the_excerpt, $excerpt_length + 1); if(count($words) > $excerpt_length) : array_pop($words); array_push($words, '…'); $the_excerpt = implode(' ', $words); endif; $the_excerpt = '<p>' . $the_excerpt . '</p>'; return $the_excerpt; }
Forum: Plugins
In reply to: [The Events Calendar] The calendar doesn’t loadNevermind, turns out it was an issue with tribe_events_before_the_title hook that i had added in functions.php. working fine now
Forum: Plugins
In reply to: [The Events Calendar] The calendar doesn’t loadhey @acoford i see you got the plugin to work on your site. i am having the same issue where the next/prev months won’t load. how did you fix it? thanks!
Forum: Plugins
In reply to: [Image Watermark] Not Workingsame problem here, it doesn’t save
Forum: Plugins
In reply to: [Polylang] Why is the same slug between the languages not allowed?Has anyone tried updating this workaround code? I can’t seem to figure it out.
https://www.ads-software.com/support/topic/plugin-polylang-identical-page-names-in-different-languagesme too, did you figure it out?