DesignLoud
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: HELP _ WEBSITE WARNING (Headers already sent?)Ahh Thank you, it was those blasted empty lines after my ?>.. Thanks for the quick reply!
I am still looking on any sort of help or direction on this, any suggestions?
Forum: Fixing WordPress
In reply to: Font-size different in different browsersRight I have it right aligned as per my clients request because I couldnt get that text to fill the div in all browsers, works in firefox but breaks in others.. After reading some similar things on google I guess the best thing for my to do is just add it as an image and put it in there.. Thanks for the help though, didnt know if there was some trick or something I could do.
Forum: Fixing WordPress
In reply to: I'm making Autofocus look BAD…HELP us!Have you checked and followed the Theme Documentation for using images? It looks like you need to set it to use the featured image and depending on the theme, it may automatically resize it for you.. Other than that I would just find the dimensions of each of those boxes you are placing the images in and use something like photoshop or a free image editing program to crop and scale your images to match those dimensions. I would think that this being a premium theme that it would automatically resize for you, not sure though, I didnt read over all the documentation.
Forum: Fixing WordPress
In reply to: Sub menu is breaking and showing on all pagesThanks Jarret, I appreciate your feedback!
Forum: Fixing WordPress
In reply to: using wp_enqueue_script correctlyNevermind, simply had to remove that from my functions.php
thanks anyways
Forum: Fixing WordPress
In reply to: using wp_enqueue_script correctlyOk here is what the author of the plugin is telling me is the problem with my code, but hasnt offered any support on how to correct this:
He says
This part adds second, old jquery incorrectly
wp_register_script( 'jquery-1-2-6-min', get_template_directory_uri() . '/js/jquery-1.2.6.min.js', array('jquery') ); wp_enqueue_script( 'jquery-1-2-6-min' );
Any suggestions on how to get this resolved?
Forum: Fixing WordPress
In reply to: Sub menu is breaking and showing on all pagesYa, I had to do it via CSS in meantime, which I knew I could do all along but from my understanding search engines (specifically google) dont like the whole ‘display:none’ so I was looking for a way to handle this through php..
Still interested if you have any suggestions but in the mean time I guess this will do.
Forum: Fixing WordPress
In reply to: Sub menu is breaking and showing on all pagesSwanson what do you mean by
Wrap the associated php of your sub menu in is_home, a conditional tag.
can you provide me an example on how to do this? Sorry to be a bother but I am crunched for time on getting this done and this seems to be one of my last few holdups. Thanks
Anyone else who might know how to do this please feel free to chime in.
Forum: Fixing WordPress
In reply to: Sub menu is breaking and showing on all pagesseriously, anyone? please help me resolve this.. Sorry to keep replying to my own thread but I have noticed that these just get buried in the forums the more posts it has.. Seems simple, but it is beyond my experience anyone?
Forum: Fixing WordPress
In reply to: Sub menu is breaking and showing on all pagesAny help on this would be very much appreciated. I cannot find anything similar to this on the forums or google. Kind of at a loss here and my lack oh php knowledge doesnt help ??
Forum: Fixing WordPress
In reply to: Body class to display template nameThanks esmi, after working with it last night I was able to figure it out but it was with your help. Again thanks!
Forum: Fixing WordPress
In reply to: Sub menu is breaking and showing on all pagesI dont know what I should put after this:
<?php if is_page (array('about','company','owners')) { WHAT DO I PUT HERE }else{ AND WHAT DO I PUT HERE } ?>
I guess I am asking for an example I could work off of. ??
Forum: Fixing WordPress
In reply to: Registering Jquery and Javascript in the headerI fixed this issue and I can see what esmi was trying to say.. Unfortunately I am not very bright ?? so I needed someone outside of the wordpress codex to explain this to me but for future people who will be looking for this here is how I fixed it:
https://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/
Thanks
Forum: Fixing WordPress
In reply to: Registering Jquery and Javascript in the headerBummer, it stripped my code I was asking about, let me try this again meeting their rules:
<?php function my_custom_menu_script() { wp_enqueue_script( 'jquery-1.2.6.min', get_template_directory_uri() . '/js/jquery-1.2.6.min.js', array('jquery') ); } add_action('wp_enqueue_scripts', 'my_custom_menu_script'); ?>
And I guess I would repeat that process but with a different function name for the other js file. Then please see my comment from the previous post.