Phillip Dews
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: TypeError issueCertainly did, I put it just above the <?php get_footer(); ?> in that template file!
Want me to try it in the footer itself? I also moved the link to the typed.js file just above it to the file now looks like this…<section id="section2"> <section id="typed-wrapper"><h1 class="welcome">Welcome to Monkeypants we: <span id="typing" style="white-space:pre"></span></h1></section> <section id="typed-strings"> <p>Phrase or Sentence 1</p> <p>Phrase or Sentence 2</p> <p>Phrase or Sentence 3</p> </section> </section> </div> <script src="<?php echo get_template_directory_uri(); ?>/js/typed.js" type="text/javascript"></script> <script type="text/javascript"> $(function(){ $("#typing").typed({ stringElement:$("#typed-strings"), typeSpeed:30, backDelay:500, loop:true, showCursor:true, }); }); </script>
I will try it in the footer.php instead and see if that makes any difference!
Forum: Fixing WordPress
In reply to: TypeError issueOK have redone everything in your fiddle on the theme and wrapped them in <p> tags but still getting the error weirdly when it’s working perfectly fine in the fiddle!
getting there though I see, turning into quite a challenge hey!
Forum: Fixing WordPress
In reply to: TypeError issueWe certainly are Andrew, many thanks. I’m surprised that it’s not loading properly as I ma calling it correctly. here is the link to that direct file…
https://www.monkeypantsproductions.co.uk/wp-content/themes/monkeypants/js/typed.js
I have also updated the fiddle with the s removed as suggested but still the same https://jsfiddle.net/jyxa51vy/14/
Appreciate all the help Andrew.
Forum: Fixing WordPress
In reply to: TypeError issueHmm that’s working after a fashion as you can see here https://jsfiddle.net/jyxa51vy/10/ but the typed-strings are not showing though weirdly when it should be those that are being typed out
Have put your fix in the actual theme as well but nothing is typing there weirdly and I am still getting the….
TypeError: $(...).typed is not a function
in the consoleMany thanks
Forum: Fixing WordPress
In reply to: WordPress Dashboard will not loadWhat is the error your getting when you try to load the dashboard?
Forum: Fixing WordPress
In reply to: TypeError issueJust made another fiddle and added typed.js as an external resource fella. Here is the link..
https://jsfiddle.net/jyxa51vy/6/Thanks again
Forum: Fixing WordPress
In reply to: TypeError issueopps sorry her is another link https://jsfiddle.net/jyxa51vy/3/
- This reply was modified 7 years, 9 months ago by Phillip Dews.
Forum: Fixing WordPress
In reply to: TypeError issueHi Andrew,
thank you for the quick reply. I have never used pastebin or any other service like that before. I have (I think correctly) created a fiddle here: https://jsfiddle.net/jyxa51vy/
Many thanks.
PhillipForum: Fixing WordPress
In reply to: Footer and Posts No ShowHi Steve,
Yep you was right, the debug helped fella, I got this..
Stay Social →
Access Tax & Accounting
0800 302 9300
[email protected]How ATA Helps You
Where Can We Help You?
Benefits of Using Your PSC abroad
Limited Company Services
Recruitment Agency Services
ATA Resources and Help ?Blog Posts
Our blog is a collection of the latest news, information and more relating to ATA but also the wider world relevant to our clients.
Fatal error: Call to undefined function has_post_thmbnail() in C:\xampp\htdocs\beta.accesstaxaccounting\wp-content\themes\atacustom\loop.php on line 3
Silly little typo it seems all working now as you can see https://beta.accesstaxaccounting.com/ata-resources-and-help/ata-blog/
just goto tweak the styling and can finish!
Thanks againPhillip
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Custom Theme, Slider not showingBTW Tom,
Good to know that your website is now all fully fixed! All the best!
– PhillipForum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Custom Theme, Slider not showingHi Tom,
thanks for that! most of the js files and enqued properly in my functions.php file and to make doubly sure I have added this to make sure that all assets are loaded correctly:
function DevBrum_ssl_template_redirect() { if ( !is_ssl() ) { if ( 0 === strpos($_SERVER['REQUEST_URI'], 'http') ) { wp_redirect(preg_replace('|^https://|', 'https://', $_SERVER['REQUEST_URI']), 301 ); exit(); } else { wp_redirect('https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], 301 ); exit(); } } } add_action( 'template_redirect', 'DevBrum_ssl_template_redirect', 1 );
Seems to me the problem is being caused by JQMIGRATE as all I am getting is this:
JQMIGRATE: Migrate is installed, version 1.4.1Jmigrate however is loading up correctly with https have a look at line 79 on: view-source:https://www.brum.design/
Thanks for your help buddy
Best regards,Phillip
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Https errorWhat is your website link?
Forum: Themes and Templates
In reply to: Looking for a specific multi user booking and listing themeHi Azo91,
have just built a holiday lettings website using this theme. This should do for your needs fella but get in touch with the developers before purchasing…
https://themeforest.net/item/directory-portal-wordpress-theme/3840053
All the best
– PhillipForum: Fixing WordPress
In reply to: Create User Account from Non-WordPress SiteActually I may make it available on Github dude!
Here is TBN.BuzzIt’s still very rough around the edges as I really need to get the backend right first though then can concentrate on making it all look pretty with css!
Forum: Fixing WordPress
In reply to: Create User Account from Non-WordPress SiteThat makes a lot more sense now.
My non WP site does include both email and username and I am using the password_hash function before inserting into my db.Once I have got it all figured out I may just publish a blog post on how I achieved it as I am sure there are a few out there that would like to know how to do this!
Fancy having a look at the site at all?
– PD