mmak0710
Forum Replies Created
-
Hello,
Just wondering if there is an update coming soon to fix this issue?
Thanks!
Forum: Plugins
In reply to: [Add Custom Fee to WooCommerce] How is Custom Fee being added to WooCommerceHi @wpexperts.io,
So the developer of the Makery WordPress theme https://demo.themex.co/makery/ is asking. Basically, I am trying to charge a “Service” fee on the marketplace that I the Marketplace owner keeps, not the vendor. When I did a test transaction through Makery and your plugin, the vendor got their asking plus AND the Add-on fee I set.
Thanks!
Yes, new user notification is on. It used to work up until about 3 days ago.
Hi Boris,
I am trying to make the UM tab either call a shortcdoe (not a UM shortcode) or redirect to a page on the site. I added in this code but it doesn’t load the shortcode content:
/* add new account tab called Read Me */
add_filter(‘um_account_page_default_tabs_hook’, ‘my_custom_tab_in_um’, 100 );
function my_custom_tab_in_um( $tabs ) {
$tabs[800][‘readme’][‘icon’] = ‘um-faicon-book’;
$tabs[800][‘readme’][‘title’] = ‘Read Me’;
$tabs[800][‘readme’][‘custom’] = true;
return $tabs;
}/* make our new tab hookable */
add_action(‘um_account_tab__readme’, ‘um_account_tab__mytab’);
function um_account_tab__mytab( $info ) {
global $ultimatemember;
extract( $info );$output = $ultimatemember->account->get_tab_output(‘readme’);
if ( $output ) { echo $output; }
}/* Finally we add some content in the tab */
add_filter(‘um_account_content_hook_readme’, ‘um_account_content_hook_mytab’);
function um_account_content_hook_mytab( $output ){
ob_start();
?><div class=”um-field”>
<!– Here goes your custom content –>
<!– End of content –>
</div><?php
$output .= ob_get_contents();
ob_end_clean();
return $output;
}- This reply was modified 7 years, 12 months ago by mmak0710.
Thanks!
Hi Boris,
I actually just re-copied and pasted the reCaptcha Keys and it seems to be working now.
Thanks!
Hi Boris,
Sorry if that was a bit confusing. I am using the latest version of UM and reCaptcha.
What I was explaining above is, when I do the reCaptcha (picking images Google tells me to pick) it shows it was successfully completed like this https://i.imgur.com/5Qm1BTG.png. But when I go to finish registration and click “Register” it gives me this error https://i.imgur.com/fm3Is9W.png
Hope that makes more sense.
Thanks for that.
The issue now is when I register and use reCaptcha it gives this error message: https://i.imgur.com/j6F5ne5.png
I completed the reCaptcha and it gives me the green check mark recognizing I am not a robot. Any ideas why this is happening?
- This reply was modified 7 years, 12 months ago by mmak0710.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Podcast Page only showing 6 episodesHi Hugh,
My website is https://hockeynews.net my podcast page is https://hockeynews.net/podcast. Here is the feed https://hockeynews.net/feed/podcast.
What is confusing me is that when I look at the Podcast episode tab in WordPress it shows 32 Podcasts but the page and feed only 5 feeds shown and they aren’t even the most recent feeds.
Hope this helps.
Thanks,
Mike