jayarrgee
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Issue Regarding Stylesheet LoadingOk so basically the wordpress website was loading through sportsacademy-usa.com rather than sportsacademyusa.com, i removed everything and reinstalled it – installed the wordpress via sportsacademyusa.com but still it doesn’t seem to be loading the stylesheet?
Forum: Fixing WordPress
In reply to: Issue Regarding Stylesheet LoadingOh wait, I think I see it in my cPanel, going to try reinstalling the WordPress now! Will let you know if it works or not
Forum: Fixing WordPress
In reply to: Issue Regarding Stylesheet LoadingWhere can I modify this? When you say database are you referring to the SQL db?
Forum: Fixing WordPress
In reply to: Issue Regarding Stylesheet LoadingBasically the server has two domains linking to it, I added sportsacademyusa.com as the leading domain – if I switch them and make sportsacademy-usa.com primary domain will this make the site work?
Forum: Fixing WordPress
In reply to: Issue Regarding Stylesheet LoadingYour site is not containing style.css.
I am not 100% sure which theme is being loaded, but all the theme’s have corresponding style.css sheets in the directories, so surely that means there should be a stylesheet active?
Forum: Fixing WordPress
In reply to: Loading into an iFrame?I’ve already checked that out – Unfortunately that only provides information on how to produce 3 items, what I need is to be able to take the link that is produced by WordPress, and navigate it to load the post information within an iFrame, rather than A, when clicking the link it takes you to the post on wordpress or B, producing “A,” but within the iFrame itself. – I just want the post’s title and content to be loaded into the iFrame!
Forum: Fixing WordPress
In reply to: Loading into an iFrame?Just as an update and because I forgot to mention… currently the code I am using for the post titles is:
<?php global $post; $args = array( 'posts_per_page' => 20 ); $myposts = get_posts( $args ); foreach( $myposts as $post ) : setup_postdata($post); ?> <a>" rel="bookmark" target="central" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a> <?php endforeach; ?>[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
and my iFrame is called “central” – but naturally that is loading the whole blog in the window rather than just the actual post itself! 🙁