I'm working on a Wordpress site with the Events Manager Pro plugin for Wordpress plugin and Qtranslate. When I use the event page the content will show in the correct language. But when I use the #_LOCATIONNAME in the Booking email template it doesn't work.
If you have any type of e-mail plugin etc., you might be use it's format for email template. Like {#_LOCATIONNAME} with brackets etc..
or you can change proccessing priority https://wordpress.stackexchange.com/questions/71406/is-there-a-flowchart-for-wordpress-loading-sequence
Related
How can I display user submitted images on other pages of WordPress site instantly. Currently I'm using Advanced custom fields plugin but that needs admin access.
On the settings page of the plugin you can use the option "Auto Publish" and add the shortcode to the page you want it to show up... for more help use the plugin support / forum here: https://wordpress.org/support/plugin/user-submitted-posts
How could you allow users to upload a video in their profile and display it on wordpress? Does anyone know of a plugin?
"Does anyone know of a plugin? in regards to the first question and topic"
very similar to this post:
WordPress Media as a Custom Post Type
Dated 2010.. which is why I started a new post.. alot has changed..
I have set up a login so far with WP User Manager and need to allow a user to upload a video link or video so that the video is displayed on their profile.
Using Advanced Custom Fields PRO to make it frontend.
documentation:
https://www.advancedcustomfields.com/resources/create-a-front-end-form/
In Wordpress there is a plugin called User Frontend Pro. This allows for you to create a frontend login for a user as well as it will give you the ability to create a custom frontend form. I used Advanced Custom Fields to create custom form fields for the data entered into this form. I was then able to make a custom post with CPT UI and create a single.php for the template of the post being created by a frontend user. This form allowed for the video with a Custom field to be entered as well as other types of information. There is a certain amount of coding you need to understand in php in creating the template structure, but the list of plugins in wordpress that will allow this to made rather simple are: ACF, CPT UI, and Frontend User Pro.
I'm not sure if this is possible. I'm trying to use the wordpress default registration form and have the information captured in infusionsoft. Before this, I tried creating a webform in infusionsoft and used that inside wordpress (from this tutorial http://infusedaddons.com/docu/InfusedWooPRO/lessons/Using_Infusionsoft_Web_Form_as_Wordpress_Registration_Form.html), infusionsoft captures the login information but it doesn't create a user inside wordpress. Is there a way to capture it using wordpress default registration form or a maybe a plugin?
Yes, it's possible. Wordpress installation I sometimes work on uses Infusionsoft Order Form for registration, sending back HTTP POST to wordpress, to create a new user account using Optimizemember plugin.
I have a WordPress website in which default payment gateway is stripe, but I need PayPal. But this theme stop PayPal support, So what I need to do for using PayPal in this theme.
theme is: http://demo.hellovideoapp.com/
You need to edit PHP pages of the theme on which you want implement PayPal Payment method or whatever you want. Also you need to edit your configuration file i.e. web.config (via CPanel if your website is published).
For further help please check the following documents and code samples:
https://github.com/paypal/PayPal-PHP-SDK
I have a wordpress site with paypal button integrated. It works as expected. I want to use IPN to do the following after a successful payment:
1) Send Email to buyer
2) change the user role in wordpress
Question is how do I embed a standalone PHP file in wordpress which will be called by IPN and has access to wordpress functions ?
Ideally what you want to do is add a stand alone file in your theme root e.g. ipn.php, in it call wordpress core functions.
put this at the top of the ipn file.
<?php require_once("../../../wp-load.php");?>
now you can get all wordpress functions inside.