graphical_force
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Newbie to the site and HTMLGreat!
Forum: Fixing WordPress
In reply to: How to oranize the structure of the posts?Can you post the code from your theme where you would like it changed?
Forum: Fixing WordPress
In reply to: Print a URL passed variable on your WP Page?So if your trying to access the variable via Gravity Forms, you need to post there to get support. I have a developers account there and they are great about supporting these issues. This forum does not support premium plugins or themes since we cannot download the code without paying first to look at it.
Forum: Fixing WordPress
In reply to: Newbie to the site and HTMLTry changing the code to this: http://linkedin.com/pub/andrew-/b/a8/71a instead of this: http://www.linkedin.com/pub/andrew-/b/a8/71a
Forum: Fixing WordPress
In reply to: Print a URL passed variable on your WP Page?Could you post any code that you have so we can take a look?
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined functionYou can ftp into the site and delete the jetpack plugin which should allow you to login if it’s the plugin that is causing the issue. From there you can troubleshoot to see what the actual issue is.
Forum: Fixing WordPress
In reply to: text editor not complete/ no kitchensinkCan you provide some more info? What theme are you using? What version of WordPress are you using? What led up to this issue? Did you do any updates or install any plugins?
Forum: Fixing WordPress
In reply to: Tiny bit of white overhang in header and footer!According to Surcuri, you have malware on the site so you may want to look at that first.
Also, that is a premium theme which are not supported on this forum since we have no way to download the code to look at it without paying for it. Unfortunately you will have to get support from the author.
Forum: Fixing WordPress
In reply to: How to oranize the structure of the posts?Yes, and the answer was in the response I already gave you. http://codex.ww.wp.xz.cn/Function_Reference/the_excerpt
Forum: Fixing WordPress
In reply to: Taking out a CSS element from Sidebar Widget titlesIt sounds like it may be controlled by some code similar to this:
<?php $args = array( 'name' => sprintf(__('Sidebar %d'), $i ), 'id' => "sidebar-$i", 'description' => '', 'class' => '', 'before_widget' => '<li id="%1$s" class="widget %2$s">', 'after_widget' => '</li>', 'before_title' => '<h2 class="widgettitle">', 'after_title' => '</h2>' ); ?>Usually it’s found in your functions.php file but I’ve not looked at the code of your theme.
http://codex.ww.wp.xz.cn/Function_Reference/register_sidebars
Forum: Fixing WordPress
In reply to: How to oranize the structure of the posts?Without looking at the code, you most likely will have to switch out the_content(); for the_excerpt(); http://codex.ww.wp.xz.cn/Function_Reference/the_excerpt
Make sure that you create a child theme first so you don’t lose your custom code if you update the theme. http://codex.ww.wp.xz.cn/Child_Themes
Forum: Fixing WordPress
In reply to: Cropping Featured ImagesIf the theme is cropping them and displaying the correct size on the front page, then you need to look at the code and see what size of the thumbnail you are calling. The issue seems to me that it is calling two different sizes on different pages. Something like:
get_the_post_thumbnail($post_id, 'thumbnail'); // Thumbnail get_the_post_thumbnail($post_id, 'medium'); // Medium resolution get_the_post_thumbnail($post_id, 'large'); // Large resolution get_the_post_thumbnail($post_id, 'full'); // OriginalForum: Fixing WordPress
In reply to: Newbie to the site and HTMLIf you mouse over the link, you should see where that link goes to. For example in Chrome, I can see where the link goes to in the bottom left corner of the browser when I over over the link. If you do that does it show this? http://www.linkedin.com/pub/andrew-/b/a8/71a
Forum: Fixing WordPress
In reply to: I goofed. Custom code gone wrong!! Help ASAP. Locked out of site.If your using their themes and/or plugins, you will have to get support from them. These forums do not support premium themes/plugins since we can’t have access to them to look at the code without paying.
Forum: Fixing WordPress
In reply to: Changing Theme Home Page from a Post to a PageNo problem.