Vamsi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Add a Page into PHP Code?Get content by id check this
and append your custom code.
Forum: Themes and Templates
In reply to: Page Pagination prroblemI don’t know that, checkout the hooks implementations. you might find out the function doing the pagination
Forum: Themes and Templates
In reply to: Displaying Link Counts of Each Category Inside The Tag ItselfLooks like that function is deprecated. Use wp_list_categories
Not sure if that can be removed, checkout category walker as well.
Forum: Themes and Templates
In reply to: Simple Sidebar Portfolio ThemeCheck water lily
Forum: Themes and Templates
In reply to: Changing width of contentPost your website link.
Sometimes styles applied as inline too.Forum: Themes and Templates
In reply to: Page Pagination prroblemFirst one has a hook ‘
clubix_after_posts
‘, second one has ‘clubix_after_post
‘First one has after posts hook
do_action( 'clubix_after_posts_loop', $query, '', 2 );
but the second one doesn’tForum: Themes and Templates
In reply to: how to set clean fullscreen slideshow with caption homepageCheckout this example … Slider in the background and login form at the center.
Forum: Themes and Templates
In reply to: Unable to modify sidebarsAdding widgets to sidebar — on admin panel isn’t it ?
You do not have to expand to add something, just try dragging a widget and drop it in sidebar.
Forum: Themes and Templates
In reply to: CSS to change banner margin/* Trying changing banner margin-bottom 80 to 10 or 20 */ #banner { margin: 0px 0px 80px !important; }
Forum: Themes and Templates
In reply to: Change permalink of custom post type in themeLook for the function which registers your post type ‘Property’.
I think you can do this with an argument like this
'rewrite' => array( 'slug' => 'your-custom-name' )
Check out the example from here. https://codex.www.ads-software.com/Function_Reference/register_post_type
Forum: Themes and Templates
In reply to: Removing space above contentHow much you want to shift upwards ?
There is minimum height for
.site-branding
. Alter that..site-branding { min-height: 0; /* 70px original */ position: relative; z-index: 1; }
Forum: Themes and Templates
In reply to: [Flatio] links do not workwhat are ‘iconapps’? I see only links(navigation) on top right ?
Forum: Themes and Templates
In reply to: Issue with CSSHave you tried changing the default wordpress thumbnail size (150×150).
It will be in settings->mediaForum: Themes and Templates
In reply to: [Twenty Fourteen] Two images in headerIf it is a permanent image, You can add img tag in your header.php.
If it is different on each page, then you can add the image to post and get it as an attachment in your header.phpForum: Themes and Templates
In reply to: Pages Navigation Menu not work on mobile layoutCheck if there is any javascript handling that part is correct ..!