pedropamn
Forum Replies Created
-
Forum: Plugins
In reply to: [Juno Split] Split sem MarketplaceCerto…
Neste caso, eu poderia implementar isso no functions.php do meu tema?
Forum: Plugins
In reply to: [Juno Split] Erro ao tentar criar notifica??es da JunoEssa mensagem persiste mesmo. Corrigi isso inserindo a url manualmente no painel da Juno
A URL é:
https://seusite.com.br/?wc-api=woo_juno_notifications
OU
https://seusite.com.br/wc-api/woo_juno_notifications
(em caso de permalinks ativados)A mensagem pode ainda aparecer depois disso, mas as notifica??es ser?o recebidas pelo sistema
I don’t see this option. It’s a PRO option?
Nestes casos, creio que possa ser inserido manualmente no painel da Juno:
https://site.com/?wc-api=woo_juno_notifications
(ou
site.com/wc-api/woo_juno_notifications
(Permalinks)Forum: Plugins
In reply to: [Visual Portfolio, Photo Gallery & Post Grid] filter loading timeIt’s a great plugin, but I have to say that, in my opinion, it is a basic feature that should be in free version. Is there any workaround for it without buying the plugin?
Clarifying: This ocurrs in two widgets right after “Clientes”.Master Addons is being used with “Filterable Gallery” feature
Forum: Themes and Templates
In reply to: [Neve] Transparent header with Neve freeWorkaround that works for me (Using Elementor):
1 – Custom CSS to remove the color of header and make it transparent:
.hfg_header .header-main-inner{ background-color:transparent!important; } .nv-navbar{ background-color:transparent!important; }
2 – Put the first block (after header) in margin top -100px
3 – All the elements inside it (columns) in margin top 100px
4 – (Optional): To make header follow the scroll, changing it’s color: With MyStickMenu plugin, configure “Make visible on Scroll” field and check the option “Stick Background Color” to choose oneThat’s it
I solve this issue installing WP Fastest Cache and clicking in “Clear”
It’s seems a server cache issue. I’ve inserted
define( 'WP_CACHE', false );
inwp-config.php
as wellForum: Plugins
In reply to: [Comments - wpDiscuz] Cache issueForum: Plugins
In reply to: [Comments - wpDiscuz] Cache issueRight… But there is nothing which can i do? Any file change, any hook … Something?
- This reply was modified 6 years, 1 month ago by pedropamn.
Forum: Plugins
In reply to: [IdeaPush] Send email when new idea is postedAnother question: The email that i put in “Admin Notification Email” will receive only new ideas notification?
Forum: Plugins
In reply to: [IdeaPush] Send email when new idea is postedI solve this putting the follow code in my functions.php:
function send_email_idea_created($newIdeaId){ $title = get_the_title($newIdeaId); $link_post = get_post_permalink($newIdeaId); wp_mail('[email protected]', 'My Subject', 'New idea: '.$title.' in the link '.$link_post); } add_action('idea_push_after_idea_created', 'send_email_idea_created', 100);
Works fine =D
But i have a observation:
idea_push_after_idea_created
just pass 1 parameter ($newIdeaId
), but i think that he should pass 4, as it is in the FAQ($newIdeaId, $userId, $title, $description)
.. So, I needed to get the title and the link with WordPress functions…But, any way, is working now ??
Forum: Plugins
In reply to: [Comments - wpDiscuz] Subscription not workingThis article solve the problem (set SMTP mannualy, without WP Mail SMTP plugin)
https://help.gulshankumar.net/t/smtp-settings-of-wordpress-without-using-plugin/1641
- This reply was modified 6 years, 1 month ago by pedropamn.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Subscription not workingOk.. but i can’t upload now…
My installation is sending other emails (new users, sending comments alerts to post author…) … But no emails configured in ‘Phrases’ tab…
Forum: Plugins
In reply to: [Comments - wpDiscuz] Subscription not workingI’m running in localhost with WP Mail SMTP plugin… wpDiscuz is ignoring my SMTP configurations? It uses default WordPress mail setting?