Keyboard_Headaches
Forum Replies Created
-
Forum: Plugins
In reply to: [Image Gallery Reloaded] WordPress 3.51 Image Gallery Reloaded not working.I fixed mine by getting rid of the “events manager” plugin. It was causing it to not work at all.
I really wish the codex writers and authors would elaborate a little bit more on thier code.
Say for instance do I need to change this line “new WP_Query( $args )” to something of my own? And if so, what? lol
taken from the first lines of the multiple loops example here WP_Query// The Query $the_query = new WP_Query( $args );
I did, lol. It makes marginal sense to me, lol. So, I will read it over and over until it makes a bit better sense to me, lol
I will but I dont understand what to do with it, I am not a php coder, lol.
Forum: Themes and Templates
In reply to: Can this be done in WordPress?lol, I hate to say it but its still not working properly. It always pulls the posts of the site admin. Not sure what to do with it now, ??
Forum: Themes and Templates
In reply to: Can this be done in WordPress?Thanks Ayman, I gave this a shot and it did bring up the listings on the single agents page… but it brought up the same listings for every agent, not like I was hoping. lol. I need a way to list the listings that the specific agent has listed or “posted”.
Unless I mis-understood something in your code or something I was supposed to change in it, it just didn’t do it, lol. I guess I am going to have to hire someone to do it for me, lol.Forum: Themes and Templates
In reply to: two column loop mobile viewso you want to loop thru 2 loops in mobile view? Like, I mean do you want to have 2 separate cats displaying side by side in mobile view in 2 columns side by side or do you simply want 2 columns in mobile view. Mostly, on a cell phone your going to be reduced to one column and still be able to understand the content. It seems if you make 2 columns on cell phone the content using posts , it will become all mushed up and un-discernable or unable to read correctly. Or just really small. Can you clarify?
Forum: Themes and Templates
In reply to: After editing template, page goes blank, help!By the way, the site is on my demo server, https://www.entechpc.com if you wish to take a look, just dont laugh as I am a noob theme developer
Forum: Themes and Templates
In reply to: Does it really matter if its outside a div or not?Ah, ok gothcha, Thanks or the tip. I am a noob theme dev and sometimes the codex make me crazy, lol. My new theme is for a real estate site at https://www.entechpc.com and this is where I am having all of the issues, lol.
Forum: Themes and Templates
In reply to: Tips on theme for a TakeAway businessYes, Andrew is right, you can in fact get some nasty server break ins or hacks if you get a theme from a shady source! Be careful of this and thank you Andrew for bringing this up.
Note that Themeforest normally keeps really good tabs on what they have for sale and what their authors are doing. Hence safe source.
Forum: Themes and Templates
In reply to: Does it really matter if its outside a div or not?Ah ok so it should be like this right???
<?php endwhile; ?> </article> <?php endif; ?>
Is this correct?
Are there other conditions that may require something different like having both after the article tag? Or is this pretty much cut and dried?Forum: Themes and Templates
In reply to: After editing template, page goes blank, help!Yes I did and here is what I got back
Notice: wp_enqueue_script was called incorrectly. Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or init hooks. Please see Debugging in WordPress for more information. (This message was added in version 3.3.) in /home2/entechpc/public_html/wp-includes/functions.php on line 2959
Warning: Unexpected character in input: ‘\’ (ASCII=92) state=1 in /home2/entechpc/public_html/wp-content/themes/LeacroftRealtyGroup/functions.php on line 11
I dont really undersand them ans here is
Something funny though, I have not used any enqueue at all. I never use any enqueue scripting in any of my themes. Just dont undertsnad them or how to use them.and here is my functions.php
<?php // Enable post thumbnails add_theme_support('post-thumbnails'); set_post_thumbnail_size(125, 125, true); //Enable post and comments RSS feed links to head add_theme_support( 'automatic-feed-links' ); //Code for custom background support add_theme_support( 'custom-background' ); require_once ('includes/menuinit.php'); require_once ( 'includes/cattemp.php' ); require_once ( 'includes/breadcrumbs.php' ); require_once ( 'includes/sidebar.php' ); require_once ( 'includes/walkerclass.php' ); require_once ( 'includes/portfolio.php' ); require_once ( 'includes/postnav.php' ); require_once ( 'includes/readmore.php' ); require_once ( 'includes/googlemaps.php' ); ?>
Now I did hand write everything in all of the files I have in this theme maybe I have a mistake in one of my include files?
Forum: Themes and Templates
In reply to: Does it really matter if its outside a div or not?so my “end ifs” should be after the ending </article> tag then right?
Forum: Themes and Templates
In reply to: [Catch Everest] Widget collapsing in the right sidebarYou could just add padding or margin to each one.
maybe something likemargin-right:10px;
use firebug in firefox and play with it a bit.
Nice!