Frank Thoeny
Forum Replies Created
-
@thorshammer The SUBMIT button uses AJAX and the little spinning wheel is an ajax-loader.gif image. FLASH was never used in this Plugin and the ajax-loader.gif image actually is loaded from the WordPress Plugin CONTACT FORM 7.
You shouldn’t be asking webheadllc to replace something on a Plugin that does not belong to him. Your Flash issues are caused by something else.Forum: Fixing WordPress
In reply to: Cannot log into WP.org dashboard, faced with white screenTry logging in the admin here:
Forum: Fixing WordPress
In reply to: include php fileThe function that is inside of mydisclaimer.php could be called by using the Shortcode API, if you want to cast the function into a post/page.
Make sure <?php include “mydisclaimer.php”; ?> is correctly included inside of the functions.php in the theme. You should use include_once for this case so it does not call into the page twice through the WP Loop.
If your function name, for example, is myDisclaimerFunction() then you could add the shortcode like below inside the functions.php:
add_shortcode( ‘mydisclaimer’, ‘myDisclaimerFunction’ );Then on the page/post put your shortcode in.
[mydisclaimer]Must use return for the value, don’t use echo with the Shortcode API.
I’m experiencing the same problem.
I tested from the email link and does not work.
But when I copy and paste the link into the web browser it works.My Theme has Admin Branding, so no luck shutting that off.
I’ll update the AIT-Themes Directory+ to newest version and see if that fixes the problem.
Forum: Themes and Templates
In reply to: [Customizr] Customizr/Bootstrap3 ???Thank you Nikeo! I’m looking forward to mobile-first technology in Bootstrap3. For now I’ll be customizing Customizr to use the latest version of Bootstrap which is 3.3.5. I need to change many parts. I can’t wait for Customizr V4 release. On my wishlist, is a mobile first main menu with 508 compliance accessibility and the ability to tab through submenu dropdowns without any hovers.
Forum: Themes and Templates
In reply to: [Customizr] Customizr/Bootstrap3 ???anybody?
The PermaLinks need reset.
Go to Settings > PermaLinks.
Make sure Post Name is selected and then save changes.It’s a page. never mind
I have this same issue. All my normal pages that are now replaced with product pages. Not good! Need help seriously.
Forum: Hacks
In reply to: Howto integrate the Media Library into a plugin?frold,
I don’t know if you still follow this post, since it’s eleven months old. I like the way this works. What about audio? Would somebody be able to show me how you use jQuery to get the audio file, say MP3. I want to do something like this, but this doesn’t work.
…
<input type=”text” name=”MP3[URL]” id=”upload_audio”>
…
window.send_to_editor = function(html) {
audioURL = jQuery(‘audio’,html).attr(‘src’);
jQuery(‘#upload_audio’).val(audioURL);
tb_remove();
}
…