chinchanchan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal error: Out of memory on homepage onlyYes it is working now, kinda weird it has been this way for some hours now. Anyway Thanks for looking.
Forum: Fixing WordPress
In reply to: WordPress adding "\ \" to html codeHi katalonian,
Yes I am using wordpress’s default wysiwyg editor.
thanks
Forum: Hacks
In reply to: Help with JQueryThanks for the help Matty, i will surely check jQuery’s site and learn more about it.
Thanks for the tips.
have a great day!
-Chin
Forum: Hacks
In reply to: Help with JQueryHi Again,
I have successfully included the files, they are loading correctly.
jquerytransposer.js and gotranspose.jsi created gotranspose.js inside that file is this code
‘$(function() {
$(“pre”).transpose();
});’but it is still not working here is the source
‘<script type=’text/javascript’ src=’https://localhost/praisebook/wp-includes/js/jquery/jquery.js?ver=1.4.2′></script>
<script type=’text/javascript’ src=’https://localhost/praisebook/wp-content/themes/thematic/jquerytransposer.js?ver=1.0′></script>
<script type=’text/javascript’ src=’https://localhost/praisebook/wp-content/themes/thematic/gotranspose.js?ver=1.0′></script>
‘Forum: Hacks
In reply to: Help with JQueryHi Matty,
I’ve read your guide and heres what i came up with
‘function transposer_js () {
wp_enqueue_script(‘jq’, ‘https://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js’, array(‘jquery’), ‘1.0’, false);wp_enqueue_script(‘jtranspose’, TEMPLATE_URL . ‘jquery.transposer.js’, array(‘jquery’, ‘jq’), ‘1.0’, false);
wp_enqueue_script(‘transpose’, TEMPLATE_URL . ‘transpose.js’, array(‘jquery’, ‘jq’, ‘jtranspose’), ‘1.0’, false);
}add_action(‘init’, ‘transposer_js’, 1);’
i still cannot make it work. And when i view the sourcecode where js should be loading i see TEMPLATE_URL + the js file, i believe it is not pointing to the file correctly.
Sorry about this Im a complete noob
Thanks
-ChinForum: Hacks
In reply to: Help with JQueryi followed the guide, but i cant get it too work…
Forum: Hacks
In reply to: Help with JQueryThanks esmi, i will read and try it out.