viablethought
Forum Replies Created
-
Disregard the last comment about “what goes into the About tab”, I didn’t realize that you need to build the “form” for it that displays information there.
Issue still exists where the About tab needs to be present in order for any custom tabs to work though.
Thanks
Also, wanted to circle back about the “About” tab. Even though I have added some text by clicking the “add” link in the screenshot, this constantly shows up by default in the about tab?
https://screencast.com/t/wpaTv9xK
What is actually supposed to be here? Am I missing something?
Thanks
Hello –
The plugin developer had made some updates to their plugin and there is no longer any conflict.
I apologize for any inconvenience.
Hello –
Here is the code which was taken from the Ultimate Member website in the documentation section:
/* Extend main profile tabs */ add_filter('um_profile_tabs', 'add_custom_profile_tab', 1000 ); function add_custom_profile_tab( $tabs ) { $tabs['favorites'] = array( 'name' => 'My Favorites', 'icon' => 'um-faicon-heart', ); return $tabs; } /* Then we just have to add content to that tab using this action */ add_action('um_profile_content_favorites_default', 'um_profile_content_favorites_default'); function um_profile_content_favorites_default( $args ) { echo 'All of your favorite posts should show here!'; }Thanks for looking into this, much appreciated.
Hello –
I had changed it to “first name.last name” and it seems to have corrected it. Haven’t tried reverting back to see if it was just a glitch though. I’ll report back.
Thanks.
Any luck with that? I am looking to dive into RCP as well.
Forum: Plugins
In reply to: [Smart Passworded Pages] Menu Order instead of Post Date?Hello –
Just recently discovered this as we were having the same issue with being redirected to the wrong “first page” upon login. I hate making modifications to plugin files but had no choice in this instance. When can we expect this to be included into the plugin? This is a far more logical solution and provides an easier way to order what page comes first upon redirection.
Thanks.
Nevermind, I found them.
Do you mean you can’t “Network Activate” the plugin and have it work across a network, or you can install it and then activate it on a single site within the network?
Curious as I just found this plugin and need it for a multi-site installation, but just for a single site within the network.
Forum: Reviews
In reply to: [Enhanced Media Library] should be part of coreTotally agree 100%!!!!
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Bulk Insert / Preset – US States@josh –
Sounds good man, heading over there now! Thanks.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Bulk Insert / Preset – US States@luke –
Yeah, I suppose I could just edit the file, but then updates would overwrite it, which would be cumbersome to take care of on every site I have it installed on.
Caalami’s fix does work to some extent, however wildcards still won’t work. I’m using straight up SSL with no proxy.
+1
Forum: Plugins
In reply to: [WooCommerce] Show Ratings even if Product Hadn't Been Reviewed YetSince you only want to display it in some areas, you can just use CSS to hide the ratings wherever you want.
This is also dependent on your theme, but you could do something like this:
.woocommerce .products .product .star-rating { display: none; }Just have to figure out what the class of the product thumbnail is and include that in the above code.