futurepocket
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom Post Types Permalink Structure?Yea, I also cannot use that plugin … doesn’t work for me.
Forum: Themes and Templates
In reply to: Twentyeleven – div/borders/cssPerhaps a link to your website so we can troubleshoot the problem? Try adding !important to the border and see if that makes a difference.
Forum: Themes and Templates
In reply to: White Screen and Cannot Fix Theme2) if the issue is with the child theme (which I paid for), what do I do to resolve that issue? Genesis doesn’t offer any support.
That’s NOT true. If you actually paid for your theme they will definitely help you troubleshoot installation problems.
Besides that point, we couldn’t really tell you why you are getting the blank screen since you haven’t posted any error logs or anything. Why not try backing up your database, re-installing WordPress and then installing the theme? If not that, disable all your plugins and try again.
Forum: Themes and Templates
In reply to: Twentyeleven child theme does not look like parentYou spelled the import URL wrong:
@import url(“../twenteleven/style.css”);
It should be:
/* Theme Name: Twenty Eleven Child Theme URI: https://example.com/ Description: Child theme for the Twenty Eleven theme Author: Your name here Author URI: https://example.com/about/ Template: twentyeleven Version: 0.1.0 */ @import url("../twentyeleven/style.css");
Forum: Fixing WordPress
In reply to: Using different comment system?Do I just add that code into my functions? Don’t I have to call it in my page/post.php files?
“So you hook into something before the comments_template like the_content and remove that filter but only for a specific post or page ID (IDs are unique).”
Sorry, I’m more of a PHP noob, how would I hook into that?
Forum: Fixing WordPress
In reply to: Using different comment system?Could you perhaps elaborate a little bit? How do I set the “custom solution” to be WordPress’ default comment system?
Yes, it works perfect now. Thank you!
Forum: Fixing WordPress
In reply to: Creating if is_home statementI was actually mistaken… I just can’t seem to figure it out:
The like button on tipstosavingmoney.net (at the bottom) doesn’t like the front page (but works fine on single posts). Is this because it’s set to static posts? Is something blocking this button only from working :S.
Forum: Fixing WordPress
In reply to: Creating if is_home statementYou did end up fixing the code, but as it turns out, I was looking for
esc_url( wp_logout_url( $_SERVER['REQUEST_URI'] ) );
all along, get_bloginfo(‘url’) didn’t work on the like button for some reason (maybe because its set to a static front page). Weird, anyways, the like button works fine now.
Forum: Fixing WordPress
In reply to: Creating if is_home statementTried adding that in the code, still getting a PHP error. I am wondering if the code itself is correctly written since I am not so good at PHP — just beginning to learn now ?? I tried to put it in here:
$post_link = get_permalink(); $post_title = get_the_title(); if ($option['position'] == 'left' && ( !is_single() && !is_page())) if (($source != 'manual') || ($source != 'shortcode')) $option['position'] = 'above'; if ($option['position'] == 'left'){ $output = '<div id="leftcontainerBox" style="' .$border. $bkcolor. 'position:' .$option['float_position']. '; top:' .$option['bottom_space']. '; left:' .$option['left_space']. ';">'; if ($option['active_buttons']['facebook_like']==true) { $output .= ' <div class="buttons"> <iframe src="https://www.facebook.com/plugins/like.php?href=' . urlencode($post_link) . '&layout=box_count&show_faces=false&action=like&font=verdana&colorscheme=light" style="border:none; overflow:hidden; width:50px; height:65px;"></iframe> </div>'; }
Except, I am trying to define a function for the $post_link so if its the FRONT page, it takes the front page URL (since the $post_link variable set to just get_permalink()) is not working (doesn’t like the front page). Any ideas?
Forum: Fixing WordPress
In reply to: how to hide title and tagline and big headerJust set your header to display: none (in styles.css) or remove it from your header.php.
Sociable is very tricky in adding this. The weird part is, I’ve edited the code and removed the code yet the output is still the same. Anyone mind telling me what code needs to be edited to actually get this out of my Tweets?
This plugin shouldn’t be allowed in the WordPress repository for FORCING links into Tweets.
Forum: Fixing WordPress
In reply to: How to make changes to navigation bar?Here try this, it should work for sure this time:
#nav li.right { float: right; margin: 0 10px 0 0; padding: 10px 10px 8px; }
TO
#nav li.right { float: right !important; margin: 0 10px 0 0; padding: 10px 10px 8px !important; }
Forum: Fixing WordPress
In reply to: Get Category Link of Post But Display Different Name?I ended up using this long function I wrote myself:
<?php if (in_category('blogging')) { ?> <a href="https://futurepocket.com/make-money/blogging">Make Money Blogging</a> <?php } elseif (in_category('make-money')) { ?> <a href="https://futurepocket.com/make-money/">Making Money Online</a> <?php } else $category = get_the_category(); if($category[0]){ echo '<a href="'.get_category_link($category[0]->term_id ).'">'.$category[0]->cat_name.'</a>'; } ?>
However, I was hoping to change link to somehow, but I can’t seem to figure out the code that would go there to make it work and auto get the of the in_category. Anyone? If not, I’ll just keep this I guess.
Forum: Fixing WordPress
In reply to: Get Category Link of Post But Display Different Name?bump, anyone?