Puvox Software
Forum Replies Created
-
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.php
does 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 4 weeks ago by Puvox Software.
- This reply was modified 4 weeks 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 2 months, 3 weeks 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 1 year, 2 months ago by Puvox Software.
- This reply was modified 1 year, 2 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; }
Forum: Plugins
In reply to: [WP phpMyAdmin] Trying to edit a field, Error code: 403Hello Daniel
1) did you try to rename to i.e. htaccess_backup, then trying the EDIT field in PMA? will it succeed if there is no htaccess?
2) If that was case and seems htaccess conflict, then please share your htaccess (using pastebin.com or like that).