_SSS
Forum Replies Created
-
Hii ChirsByrne
gallery/kaitlin-kotwicki-page under this page is not show correct if i am not wrong would you plz tell me is this normal post or custom post type
if its custom post type then Try it goto the
wptouch-admin-theme-settings custom post supoort enable them.Forum: Fixing WordPress
In reply to: Uploaded images not displaying!Hiii @lauracroft92
As per your Question all display as the little blue question mark it means images don’t get the proper path of folder check once. & place it proper folder or place the proper pathForum: Fixing WordPress
In reply to: How do I delete a footer ?Hi , How do you place the footer in your code ?
Forum: Fixing WordPress
In reply to: Disable the Subscription1. General Settings. Uncheck “Anyone can register” by Membership
Forum: Fixing WordPress
In reply to: Post in CategoriesIn this file you have call only function you need to check the where the post come from. means which function is that call your post. i think
<?php get_template_part(‘inc/loop’, “post” ); ?>
u need to check out once . or in your page its under the class
<Body class=”category-events”>
— here is some code —
then <h1 class=”page-title” itemprop=”headline”>
//You need to remove this Posts in category : Events
</body >Forum: Fixing WordPress
In reply to: Post in CategoriesHi reddoormedia ,
In all WordPress theme, there is a category.php file to display category archive.so can edit or inspect that file or your page i.e https://francesperkinscenter.org/?cat=3 and remove Post in category & save that file you can get your answerForum: Fixing WordPress
In reply to: Change the order in postI if u want to change the order of post then U can try this code
$args = array(
‘showposts’ => 2,//for nos of post u want to show
‘category_name’ => ‘xyz’, // name of category
‘orderby’=>’meta_value’,
‘meta_key’=>’view_order’, //view_order is custum field to that post
‘order’=>’ASC’ //Order of post ascending or decending
);Put the order You in custom field here is view_order making in new post
Forum: Fixing WordPress
In reply to: category archives – making earliest posts appear firstHiii to everyone ,
I am new wordpress Developer ?? . i am try to solve out this problem if any mistake let me know plz.
@wpnoob2014 try it
<?php$args = array(
‘showposts’ => 2,//for nos of post u want to show
‘category_name’ => ‘xyz’, // name of category
‘orderby’=>’meta_value’,
‘meta_key’=>’view_order’, //view_order is custum field to that post
‘order’=>’ASC’ //Order of post ascending or decending
);
query_posts( $args );if (have_posts()) : while (have_posts()) : the_post();
// here place code
?>Forum: Fixing WordPress
In reply to: How to change the path of current working themeThanx Bro for quick reply
Hi,
i want to exclude the event categories from search in my web. i had used search every-thing plugin for search so please help me how to exclude the event-categories from it.