Marcelo Martins
Forum Replies Created
-
Here we get this error:
PHP Parse error: syntax error, unexpected ')', expecting variable (T_VARIABLE) in /public_html/wp-content/plugins/media-file-renamer/classes/rest.php on line 552
That’s it @pixelsing
Solved here!But now plugin developers need to fix this bug as well, please @tigroumeow !
Thanx!
- This reply was modified 5 months, 2 weeks ago by Marcelo Martins. Reason: Mentioning the plugin developer in the comment
Hi!
We are having the same problem here, but we would not like to replace the plugin because we would have to redo all the galleries on the site. A good alternative would be to have an option in the plugin settings to disable the NextGen Gallery featured image metabox in the post edit panel.
ThanX!Forum: Themes and Templates
In reply to: [Wallstreet] Homepage lost customizations after updateThe issue appears to have been resolved in version 2.3.1.
Thanks!Good news! Thanks!
Forum: Themes and Templates
In reply to: [Wallstreet] Homepage lost customizations after updateI activated Legacy Mode but the problem did not resolve itself. Home settings are preserved in the customization panel, but they do not appear on the home page itself. It’s as if the template on this page isn’t correct or isn’t loading. For now I’m keeping the theme in the previous version so I don’t lose site customizations. Thank you again for your help!
Forum: Themes and Templates
In reply to: [Wallstreet] Homepage lost customizations after updateHello.
Some details about my installation:
I’m using this theme through a child theme (just to customize details in the css like colors etc. I’ve never had any issues with this)
My server has php on version 7.2 (yes I need to update it but…)
The Webriti Companion plugin is in version 1.8.9
Thanks for your answer!Sorry. I needed an urgent solution for a customer and chose to use another plug-in.
Maybe I’ll try this one again in a next project.
Thank you anyway.Forum: Plugins
In reply to: [Ivory Search - WordPress Search Plugin] Error on new versionThe same error here!
I had to delete the plugin via FTP to get the site working again.
Have the authors already detected the problem?
Thanks!Hi.
Thank you for providing this plugin.
But I’m having the same problem here (Version 1.6).
Thanks in advance.We had the same problem here. What can we do?
Will there be a new update to fix the bug?
Thanx!Forum: Themes and Templates
In reply to: [Cactus] Customise broken – site brokenRESOLVED!
I had to change the file repeater.js (/wp-content/themes/cactus/inc/customizer-library/custom-controls/repeater), lines 724 and 725, as below:FROM:
$( '.icp' ).iconpicker().on( 'iconpickerUpdated', function() { $( this ).trigger( 'change' ); } );
TO:
jQuery( '.icp' ).iconpicker().on( 'iconpickerUpdated', function() { jQuery( this ).trigger( 'change' ); } );
Of course, if Cactus theme is updated and does not bring this fix, we will have to change this code again, as the update must overwrite this file.
- This reply was modified 4 years, 8 months ago by Marcelo Martins.
- This reply was modified 4 years, 8 months ago by Marcelo Martins.
Forum: Plugins
In reply to: [Flamingo] HOWTO: Provide Access to Flamingo for non-Admin usersHere is the update of the function provided by Ckitso
(So it worked for me. Editor user now can open the messages)remove_filter( 'map_meta_cap', 'flamingo_map_meta_cap' ); add_filter( 'map_meta_cap', 'mycustom_flamingo_map_meta_cap', 9, 4 ); function mycustom_flamingo_map_meta_cap( $caps, $cap, $user_id, $args ) { $meta_caps = array( 'flamingo_edit_contact' => 'edit_posts', 'flamingo_edit_contacts' => 'edit_posts', 'flamingo_delete_contact' => 'edit_posts', 'flamingo_edit_inbound_message' => 'publish_posts', 'flamingo_edit_inbound_messages' => 'publish_posts', 'flamingo_delete_inbound_message' => 'publish_posts', 'flamingo_delete_inbound_messages' => 'publish_posts', 'flamingo_spam_inbound_message' => 'publish_posts', 'flamingo_unspam_inbound_message' => 'publish_posts', 'flamingo_edit_outbound_message' => 'publish_posts', 'flamingo_edit_outbound_messages' => 'publish_posts', 'flamingo_delete_outbound_message' => 'publish_posts', ); $caps = array_diff( $caps, array_keys( $meta_caps ) ); if ( isset( $meta_caps[$cap] ) ) $caps[] = $meta_caps[$cap]; return $caps; }
Forum: Plugins
In reply to: [Woocommerce Role Pricing] Regular product price displaying 0$, after updateHi,
We had the same problem here: all regular prices with 0!!
We deactivated the plug-in and are awaiting solution.
For now we are only using coupons for discounts.Atualizando:
Comentei a linha 160 do arquivo class-wc-boleto-admin.php (pasta /includes) conforme abaixo e o plug-in passou a funcionar corretamente, inclusive enviando o e-mail de notifica??o, que também n?o estava funcionando para mim. Talvez tenha sido algum tipo de conflito com outro plug-in…
Pena que esse plug-in perderá a utilidade com a obrigatoriedade dos boletos registrados em 2017. Obrigado!
//$mailer->send( $order->billing_email, $subject, $message, $headers, '' );
Na última tentativa o plug-in mudou a data do vencimento do boleto corretamente, mas continua criando as centenas de comentários. N?o consegui entender o que pode estar acontecendo ou encontrar solu??o.