How to prevent my external API call from being called by anyone but me (my site)
How to prevent my external API call from being called by anyone but me (my site)
How to prevent my external API call from being called by anyone but me (my site)
Preview url not working outside wp-admin
Allow user to select role from front end edit profile form
Render metabox gallery in frontend
Did you check the Advanced Custom Fields documentation? You can check how the repeater fields work here: https://www.advancedcustomfields.com/resources/repeater/ You’ll see that you can do the following to show your ACF repeater images on the front-end: if ( have_rows(‘carousel_repeater’) ) : while ( have_rows(‘carousel_repeater’) ) : the_row(); $yourImage = get_sub_field(‘carosuel_image’); if ( $yourImage ) : echo … Read more
Is there a layout to place 2 same sized images in two columns on the WordPress page?
Creating plugin with front-end pages
I have a contact form 7 form that’s sending information to an API. I want to display the API response on the front end. there are 2 ways to go about solving this type of problem, 1- Use the CF7 plugin’s message response hook, add_filter(‘wpcf7_display_message’, ‘my_response_msg’,10,2); function my_response_msg($message, $status){ if(‘mail_sent_ok’==$status){ $form = wpcf7_get_current_contact_form(); //in case … Read more
How to limit post (Exception pages) for current user in each role in front end?
using wp_insert_term to create custom terms for a custom taxonomy from frontend form,