graphical_force
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Call posts with same tag (using title) in specific categoriesYes, but I did a test on a site and used Raom & Loba for a tag. Even though it displayed it like that, it was showing the tag as Raom-Loba when I moused over it. Tag=roam-loba. Try and test using Raom-Loba as the term just to see if it works. If it does then you know that is your issue which is the title and the tag are not completely the same.
Forum: Fixing WordPress
In reply to: Resizing window kills links. What's up with that?I noticed no issue when resizing to the size of a phone but I did when resizing to the size of maybe a tablet.
Look at this css:
@media only screen and (max-width: 863px) and (min-width: 651px) #right { margin: 0 auto; float: none; }If you remove that float, it seems to take care of the issue.
Forum: Fixing WordPress
In reply to: Changing background in Header ("SUITS" Theme)No problem. 🙂
Forum: Fixing WordPress
In reply to: Changing background in Header ("SUITS" Theme)Change this:
.site-header { background-color: #000; }to this:
.site-header { background: url(http://www.honeyspidermovie.com/wp-content/uploads/2014/02/copy-honeyspider_header.jpg) no-repeat scroll top #000 !important; }Forum: Fixing WordPress
In reply to: Call posts with same tag (using title) in specific categoriesSo in this case, Raom & Loba is the title? And that is also a tag that you have for other posts?
If you look at the tag, are you sure that it’s not actually saving it as Raom-Loba?
Forum: Fixing WordPress
In reply to: Changing background in Header ("SUITS" Theme)It’s in your css. Change this:
.site-header { background: url(http://www.honeyspidermovie.com/wp-content/uploads/2014/02/copy-honeyspider_header.jpg) no-repeat scroll top; }to this:
.site-header { background: url(http://www.honeyspidermovie.com/wp-content/uploads/2014/02/copy-honeyspider_header.jpg) no-repeat scroll top #000; }You should be creating a child theme to put any of your edits in. This way you will not lose your changes when you update the theme.
Forum: Fixing WordPress
In reply to: Suggestion for user-submitted contentMaybe someone else can advise a free solution since I’m not aware of anything but I know gravity forms (premium plugin)can be configured to do this.
Forum: Fixing WordPress
In reply to: Resizing window kills links. What's up with that?Can you post a link to your site where we can see this happening?
Forum: Fixing WordPress
In reply to: Call posts with same tag (using title) in specific categoriesSo just to be clear, the title of your post is also tags that your searching for?
Can you post an example of a post that also is a tag?
Forum: Fixing WordPress
In reply to: How to restrict access to custom option page?Yep, that should work if you just nest it in the Settings section.
Forum: Fixing WordPress
In reply to: Change colour of blog post titlesSince you did not tell us what color you want, I added white (#fff) but you can change that to whatever you want.
You should be adding your changes in a child theme so you don’t lose them when doing an theme update.
Here is the css:
.entry-title { margin: 0; line-height: 1.1; font-family: 'Lato',sans-serif; font-weight: 900; color: #fff; )Forum: Fixing WordPress
In reply to: How to restrict access to custom option page?Is this something that will be in the admin section and not on the front end?
Forum: Fixing WordPress
In reply to: Call posts with same tag (using title) in specific categoriesI have not tested it but maybe something like:
<?php $title = get_the_title(); $args = array( 'category__in' => array(10,12,21,22), 'terms' => $title ) $the_query = new WP_Query( $args ); ?> <?php if ( $the_query->have_posts() ) : ?> Content here <?php } else {} endwhile; endif; ?>Forum: Fixing WordPress
In reply to: Creating Interactive Images/Custom Google MapsThis is not really a WordPress question.
Forum: Fixing WordPress
In reply to: Soft 404 Errors & Google PlusThe first link is not a well formed url so I could see why that may be a problem. Have you looked/asked in Google+ forums?