Puvox Software
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] a long-time problem with subscriptionsthanks for the reply!
so you should make that improvement (and also make it more intuitive, in needed your detailed reply to understand how can i achieve the goal, spent so much time).another thing, i can’t understand, none of other payment processors require that user created dozens of plans in their websites. how that is not a ridicilous? we setup bunch of subscriptions in our website (woocommerce) with very variable/dynamic prices, discounts, etc… it’s just impossible that we setup those plans in paypal dashboard. is not there any way that we create subscription and also use “autmatic renewal” without having paypal subscription package re-created for that specific subscription? it just doesn’t make sense. why/how can we ditch it and just have subscriptions on our website, and did business that way, without need to setup any plans in paypal dashboard.
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] a long-time problem with subscriptionswhen I manually try to simulate “Debit card” payment (instead of paypal button),: https://imgsh.net/i/be669857d7
i see this error in browser console:
Request URL : https://www.paypal.com/v1/billing/subscriptions
Request Method : POST
Status Code : 400 Bad Request
Request Payload: {plan_id: “”}Response:
{
"name": "INVALID_REQUEST",
"message": "Request is not well-formed, syntactically incorrect, or violates schema.",
"debug_id": "***",
"details": [
{
"field": "/plan_id",
"value": "",
"location": "body",
"issue": "INVALID_PARAMETER_SYNTAX",
"description": "The value of a field does not conform to the expected format."
}
],
"links": [
{
"href": "https://developer.paypal.com/docs/api/v1/billing/subscriptions#INVALID_REQUEST",
"rel": "information_link",
"method": "GET"
}
]
}but again, it shouldn’t be in any way “plan -related” paypal shouldnt matter whether it’s plan or simple product. I just want regular payment process to be started.
Forum: Plugins
In reply to: [WP phpMyAdmin] illegible overly charactersit relates only to PMA, so logout from wordpress not needed. you just need to re-enter plugin’s page and click “Enter PhpMyaDmin”
Forum: Plugins
In reply to: [WP phpMyAdmin] illegible overly characters3) the screenshot you shared, shows the sign of images loading failure. click F12, opens up console, then check and paste the screenshot of several 404 errors happening there (why files are not being loaded).
I suspect it might be https/ or whatever prolem
- This reply was modified 11 months, 2 weeks ago by Puvox Software.
Forum: Plugins
In reply to: [WP phpMyAdmin] illegible overly charactersah, thank you for your contribution, nice gesture, but we are short of resources to provide individual support, so I can only help on the surface.
- to increase 1 hour limit (which is hardcoded) you can just open
wp-content/plugins/wp-phpmyadmin/default_common_inc_code.php, line 45, and change1to24(or whatever hours you want). update of this plugin rarely happens, so you can once in a while edit that number after plugin updates - New version was pushed (5.2.2.01), check that out
Forum: Plugins
In reply to: [WP phpMyAdmin] illegible overly charactersDue to the fact of near zero donations over these years, there was no strong interest to support this actively.
However, the 5.2.2 update was about to push (might be pushed soon).
Forum: Plugins
In reply to: [Sign In With Socials (Google, Apple, Microsoft)] Apple login issueWe would review this within 48 hours.
Forum: Plugins
In reply to: [Sign In With Socials (Google, Apple, Microsoft)] Apple login issuewhen you do the process from
/wp-login.phpdoes it work?did you set the ‘redirect-back’ url in apple dev dashboard to
https://www.dukakeen.com/_AUTH_RESPONSE_SIWE_- This reply was modified 1 year, 2 months ago by Puvox Software.
- This reply was modified 1 year, 2 months ago by Puvox Software.
Forum: Plugins
In reply to: [Sign In With Socials (Google, Apple, Microsoft)] Apple login issueHI.
“not working” does not give any details.
include screnrecording or screenshot, error content, steps to reproduce…Forum: Plugins
In reply to: [Breadcrumbs Shortcode] Malware?Hello,
thanks for report, but you also need to provide more information : line number which it considered as “malicious code”.
otherwise we will be unable to check it, as we had already checked it and there is definitely no malware or bad code in our library and we had such false positives in the past too.
Forum: Plugins
In reply to: [WP phpMyAdmin] Fatal ErrorHi.
as you see, it requires
wp-phpmyadmin-extension/library_wp.php(not PEAR file or etc) and that file is included in plugin, there is no need to check its existence. try re-installing plugin from fresh.if error still persists, check if the hosting system automatically removes that file or not, maybe it does not like the library file or some function inside it.
- This reply was modified 1 year, 4 months ago by Puvox Software.
At this moment, there is no such functionality, but in next update, we will try to add a way to download file (CSV) from a page. thanks for suggestion
- This reply was modified 2 years, 4 months ago by Puvox Software.
- This reply was modified 2 years, 4 months ago by Puvox Software.
@nlpro thanks for response !
Forum: Plugins
In reply to: [Keyboard Shortcuts of TinyMCE] Not working with bbPressthanks for reporting, we will check the issue..
at this moment, i used this code as workaround. but please add option (with checkbox) to be used this config automatically:
add_filter( 'register_post_type_args', 'modify_p_args', 10, 2 ); function modify_p_args( $args, $name ) { if ( 'portfolio' === $name ) { $args['capability_type']= "post"; $args['capabilities']= array( 'read_post' => 'read_portfolio', 'edit_post' => 'edit_portfolio', 'delete_post' => 'delete_portfolio', // 'edit_posts' => 'edit_portfolios', 'edit_others_posts' => 'edit_others_portfolios', 'delete_others_posts'=>'delete_others_portfolios', 'publish_posts' => 'publish_portfolios', 'read_private_posts'=> 'read_private_portfolios', 'delete_posts' => 'delete_portfolios', 'create_posts' => 'edit_portfolios' ); $args['map_meta_cap']= true; // unset($args['capabilities']); $args['map_meta_cap']= false; } if ( 'vp_lists' === $name ) { $args['capabilities']= array( 'edit_post' => 'edit_portfolio_layout', 'edit_posts' => 'edit_portfolios_layout', 'edit_others_posts' => 'edit_other_portfolios_layout', 'publish_posts' => 'publish_portfolios_layout', 'read_post' => 'read_portfolio_layout', 'read_private_posts' => 'read_private_portfolios_layout', 'delete_posts' => 'delete_portfolios_layout', 'delete_post' => 'delete_portfolio_layout' ); } return $args; }