Kanger
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Just messed up htaccessNow fixed, no idea how
Forum: Fixing WordPress
In reply to: Home page redirectingNo idea how I fixed it but I did, seemed to be just from going into wp dashbaord and opening up home page and customisation bit, then seemed to work. very very strange.
Forum: Fixing WordPress
In reply to: Just messed up htaccessThis is htaccess in my folder where the wordpress is:
RewriteEngine On RewriteBase /test-site/ RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] AuthName "test-site" AuthUserFile "/home/domainroot/.htpasswds/public_html/test-site/passwd"I am having the same issue, with a different theme….any ideas on how to resolve this?
Thanks in advance
Thanks for suggestion. I tried it at 430 x 430 and still the same thing happening, played around with height making it bigger and smaller and doesn’t seem to affect it.
Forum: Plugins
In reply to: [Event Rocket] How to show just 1 next upcoming eventThanks, I actually managed to figure out after posting in forum…always happens 😉
Thanks
awesome plugin btwForum: Fixing WordPress
In reply to: Can't search for new pluginssomehow mine is now working
Forum: Fixing WordPress
In reply to: Can't search for new pluginsslightly concerned it may be to do with the softaculous installation I used?
Forum: Plugins
In reply to: Contact Form 7 SubjectActually as always happens, once I post something I figure it out! 😉
This is what I needed: http://contactform7.com/setting-placeholder-text/
Forum: Fixing WordPress
In reply to: Adding link to JQuery UI in Virtue ThemeThanks for your reply. The article is really helpful, thanks.
Any chance you could help me further though, my brain is struggling today….
I think I’ve registered the scripts I want and the libraries they are dependent on, but I am still getting an undefined function error.
This is what I have listed:
wp_register_script('modernizr', get_template_directory_uri() . '/assets/js/vendor/modernizr.min.js', false, null, false); wp_register_script('kadence_plugins', get_template_directory_uri() . '/assets/js/plugins.js', false, '237', true); wp_register_script('kadence_main', get_template_directory_uri() . '/assets/js/main.js', false, '237', true); wp_register_script('flip-script', get_template_directory_uri() . '/assets/js/flip-script.js', array('jquery', 'jquery-ui-core', 'jquery-effects-core'), false, null); wp_register_script('jquery-flip', get_template_directory_uri() . '/assets/js/jquery.flip.min.js', array('jquery', 'jquery-ui-core', 'jquery-effects-core'), false, null); wp_enqueue_script('jquery-ui-core', true, false, true); wp_enqueue_script('jquery-effects-core', true); wp_enqueue_script('jquery-flip'); wp_enqueue_script('flip-script'); wp_enqueue_script('jquery'); wp_enqueue_script('modernizr'); wp_enqueue_script('masonry'); wp_enqueue_script('kadence_plugins'); wp_enqueue_script('kadence_main');In the page source they are showing in the <head> section as:
<script type='text/javascript' src='http://localhost/wordpress/wp-includes/js/jquery/jquery.js?ver=1.11.1'></script> <script type='text/javascript' src='http://localhost/wordpress/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1'></script> <script type='text/javascript' src='http://localhost/wordpress/wp-includes/js/jquery/ui/core.min.js?ver=1.11.2'></script> <script type='text/javascript' src='http://localhost/wordpress/wp-includes/js/jquery/ui/effect.min.js?ver=1.11.2'></script> <script type='text/javascript' src='http://localhost/wordpress/wp-content/themes/virtue/assets/js/jquery.flip.min.js?ver=4.1'></script> <script type='text/javascript' src='http://localhost/wordpress/wp-content/themes/virtue/assets/js/flip-script.js?ver=4.1'></script> <script type='text/javascript' src='http://localhost/wordpress/wp-content/themes/virtue/assets/js/vendor/modernizr.min.js'></script>Any ideas why the function is undefined, I’m getting code blindness at mo.
Thanks in advance
Forum: Plugins
In reply to: Awesome Flickr Gallery, not showing all setsApologies, as always as soon as I post requesting help, I find a solution and figure it out 🙂
clearing cache and doing ‘grant access’ seemed to fix
Forum: Fixing WordPress
In reply to: How to….Thanks but I want to set it up as a theme people can download and use without having to do any techy stuff.
That’s why I was hoping to get it from it being static front page
Don’t know if that’s possible? 😉
Forum: Fixing WordPress
In reply to: How to….oops didn’t mean to make that all a link should have put
<a name= >Forum: Fixing WordPress
In reply to: How to….No what I have and want to do is as follows:
My static front page has a nice big header, then a posts section where it shows the latest post nice and large across, then below that are small exerpts in columns from the 3 previous posts before that. Then further down the page is the content from the actual page (front-page.php) I posted in the admin bit of wp which says ‘About’ then a few paragraphs.
I want to find out what the post title is whether it be ‘About’ or anything else and then echo that in a
<a>tag (just above that section) and also echo it in the navigation menu, so in the menu bar at top of each page I will have a link to the ‘About’ bit on the front page.Hope that makes sense, I’m working on it locally right now, so haven’t got a link to send
any ideas much appreciated
thanks in advance