kory27
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 Emails Arrive With Tags Instead of ValuesI’m posting with the same problem but I will include the form code and what actually comes through the email.
Thanks in advance for you prompt attention to the issue.
Kory
Hey,
Since there is apparently ZERO SUPPORT ON THIS THREAD, it appears to me the auto-linking for US Braintree accounts is not working. Skyverge, the plugin author, doesn’t seem to care about the issue at this time by their lack of support on this, or my, thread.
I manually linked it via these instructions https://docs.woocommerce.com/document/woocommerce-gateway-paypal-powered-by-braintree/#section-7 and it worked. The “Connect to Braintree” button then is greyed out b/c it’s actually connected and it, and the PayPal option, show on my site.
I hope this helps!
Kory
Also, I saw on another post that these guys support it:
https://www.skyverge.com/contact/?form_type=support&purchased=wordpress
I haven’t put a ticket in yet though.
I’m having the same issue in the post right before you. No response yet either. I’ll keep an eye here and be sure to let you know if I figure it out.
I’m likely going to try the manual linking route.
Good luck!
Kory
Forum: Plugins
In reply to: [Custom Post Type UI] Categories won’t show for posts in admin.I feel dumb for not seeing that.
Thanks for picking up on it.
All is fixed.
Forum: Plugins
In reply to: [Custom Post Type UI] Categories won’t show for posts in admin.Hi,
I am using Beaver Builder and had to do this a little differently b/c you can’t put php in a BB html module. I made a shortcut and placed in functions.php. Here is the code:
add_shortcode( 'kory_search', function() { ob_start(); ?> <h3>Search Products</h3> <form role="search" action="<?php echo site_url( '/' ); ?>" method="get" id="searchform"> <input type="text" name="s" placeholder="Search Names"/> <input type="hidden" name="post_type" value="names" /> <!-- // hidden 'names' value --> <input type="submit" alt="Search" value="Search" /> </form> <?php return ob_get_clean(); }); I hope this helps someone and thanks!Thanks so much and sorry for the delay. I hadn’t time to test it out. I’m getting the form to display for my post type names using the code below:
<div> <h3>Search Products</h3> <form role="search" action="<?php echo site_url('/'); ?>" method="get" id="searchform"> <input type="text" name="s" placeholder="Search Names"/> <input type="hidden" name="post_type" value="names" /> <!-- // hidden 'names' value --> <input type="submit" alt="Search" value="Search" /> </form> </div>It’s throwing a 404 on the url http://www.myurl.com//<?s=Mitchell&post_type=names
Any clue why?
Thanks again so much!
Thanks for that recommendation. I’ll do that now. I wasn’t able to find this forum before so my bad.
Thanks again.
Forum: Plugins
In reply to: [Show-Hide / Collapse-Expand] How to use links in the toggled contentNever mind. I actually just put my form (button) from the old Make a Payment button in there and it is working great.
I wonder what I did wrong in the first place but thanks so much for your prompt assistance!
Kory
Forum: Plugins
In reply to: [Show-Hide / Collapse-Expand] How to use links in the toggled contentThanks for the prompt reply. So, when I take your code from the example and put it in my page it works, but the url 404s b/c its adding my url to the front. For example:
On http://moraninsurance.com/make-a-payment/
Below the current Make a Payment button, you’ll see where your plugin is doing its thing. When I click the link, it goes to:
Not, http://https:/wordpress.org/support/topic/how-to-use-links-in-the-toggled-content/
Any idea why?
Thanks again!
Forum: Plugins
In reply to: [If Menu - Visibility control for Menus] strange green eyeI have the same issue. I got rid of it with css:
.if-menu-peek::after{display:none !important;}
But, I’d still like to know when the fix is out.
Thanks.
Forum: Plugins
In reply to: [BP Profile Search] Allow not logged in users to search membersI did that and just tried it again. Here is my code in that entire div:
<div class="item"> <div class="item-title"> <a href="<?php bp_member_permalink(); ?>"><?php bp_member_name(); ?></a> <?php /** * Fires inside the display of a directory member item. * * @since 1.1.0 */ do_action( 'bp_directory_members_item' ); ?> <?php /*** * If you want to show specific profile fields here you can, * but it'll add an extra query for each member in the loop * (only one regardless of the number of fields you show): * * bp_member_profile_data( 'field=the field name' ); */ bp_member_profile_data('field=Name of Your Educational Institution'); ?> </div>Do you or anyone else have an idea here? I’m stumped.
Thanks.
Forum: Plugins
In reply to: [BP Profile Search] Allow not logged in users to search membersHi,
I’ve found a great article to customize the member directory page:
https://premium.wpmudev.org/blog/how-to-create-a-custom-buddypress-members-directory/
I’ve added this code at the end of the comments as instructed:
<?php /*** * If you want to show specific profile fields here you can, * but it'll add an extra query for each member in the loop * (only one regardless of the number of fields you show): * * bp_member_profile_data( 'field=the field name' ); */ echo bp_member_profile_data('field=Name of Your Educational Institution'); ?>But, no luck showing the xProfile field. I’m on WordPress 4.6 and BP 2.6.
Anyone know why this may not be working? Seems straightforward to me so I’m wondering if I’m just missing a little thing here.
Thanks.


