External Link issue in Visual Form Builder Pro
You aren’t doing anything wrong. This was a bug affecting descriptions that’s been fixed in version 2.2.1. Here are the release notes.
You aren’t doing anything wrong. This was a bug affecting descriptions that’s been fixed in version 2.2.1. Here are the release notes.
Looks like you need to update jQuery. You are running /*! jQuery v1.8.3 jquery.com | jquery.org/license */ and a very quick search of the error message text lead to this, posted five months ago– https://github.com/blueimp/jQuery-File-Upload/issues/1794–, and to the simple instructions “You need to upgrade to jquery-ui 1.9”. I would suggest updating your install as a … Read more
There is more to it do you think but here’s a simple popup message sample I’ve created. Have a look at it and let me know if you need further help. For future reference: This sort of question should be asked at Stack Overflow!
A find and replace plugin that searches the database such as Search and Replace should help. I don’t think it will be able to automate the whole process, but should speed it up somewhat.
On main page link image to post page, on post page link it to it’s own image?
i fixed this by just retyping the anchor code.
When you place a link into a WordPress post or page the link window, where you specify where the link is to lead, has a check box for specifying that you want to open the link in a new window. There is a similar box in the advanced settings tab of any graphical element you … Read more
Maybe this works, currently not tested. Only a idea to enhance for the custom var. Also I don’t the goal right. add_filter( ‘query_vars’, ‘add_custom_query_var’ ); function add_custom_query_var( $vars ) { $vars[] = ‘#’; return $vars; } A other hint is the link to the codex, to filter the rewrite of WP.
Logout link not working
A few issues- php tags are for interpolating between php/html, they can’t go within php statements. Also, the single quotes in bloginfo are closing your string, which is generating the error. Lastly, bloginfo will echo its value, which can’t go within an echo statement, you need to use get_bloginfo instead, or simpler, just use home_url(): … Read more