Madhusudan Pokharel
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Centilium] Built-in Editor & Excerpt ProblemI am using WP built-in editor also and excerpt is formatting well for me. You can see the output
Here
Maybe you should edit it to make your problem more clearer by adding the expected and actual behaviorForum: Themes and Templates
In reply to: Missing "Editor" Tab under the "Appearance" menuUnit theme is a commercial theme, so to get the best results to get an answer towards what you are looking for is to contact their support
Forum: Themes and Templates
In reply to: Missing "Editor" Tab under the "Appearance" menuIn case of Unit Theme, May be you should probably Contact Here
Forum: Themes and Templates
In reply to: [ResponsiveBoat] Add coloured text to big title sectionHello bombmaniac,
Yes,You can make line of coloured text to the big title. Follow the following steps:
1. Go to your website> Dashboard>Appearance>Editor
2. Inside Editor in right side you will find section Select theme to edit. Select your theme in dropdown box.
3. Go down to bottom of Templates, you will find style.css. Open it.
4.Now add the following lines just above the lines .green-btn, .red-btn {}h1.intro-text{ color:green; }
You can type any color name you like in place of green above
I Hope that it will help in resolving your issue.
Thanks!!Forum: Themes and Templates
In reply to: SLIDER PICTURESThe issue could happen because of JavaScript errors. So please activate the slider and remove one by one all your plugins and try to add image again.
Maybe you should also mention which slider you are using on the theme so that it becomes easy to get you answer exactly.Forum: Themes and Templates
In reply to: [Luminescence Lite] remove sidebar on posts pagesThe Conditional Tags can be used in your Template files to change what content is displayed and how that content is displayed on a particular page depending on what conditions that page matches The Link
Thanks.
Forum: Themes and Templates
In reply to: [Theme: Advanced Newspaper] Hide author name in postsAdvanced Newspaper wp theme is a commercial theme, so to get the best results to get an answer towards what you are looking for is to contact their support:
Support LinkForum: Themes and Templates
In reply to: [Bearded] Add read more buttonIt seems that the theme has been removed for now from www.ads-software.com . When I click in The Link I got the message
No themes found. Try a different search.
Forum: Themes and Templates
In reply to: Missing "Editor" Tab under the "Appearance" menuIt seems you have to click on the “Network Admin” link in the top right-hand corner, and then a Themes section appears in the left column. In that section, there is an Editor option.
Go to this Link
Forum: Themes and Templates
In reply to: Only show Pages. Hide Menu/Widgets/Welcome MsgWordPress uses a concept of Roles, designed to give the site owner the ability to control what users can and cannot do within the site.See The Link
Further, Adminimize plugin lets you hide ‘unnecessary’ items from the WordPress backend Download the pluginI Hope that it will help in resolving your issue.
Thanks!!Forum: Themes and Templates
In reply to: [Customizr] Place anchor in a postPermalinks are the permanent URLs to your individual weblog posts.
See The Link.
Maybe you should edit it to make your problem more clearer by adding the post that you are following.Thanks!!
I am glad that I could help you.
Forum: Themes and Templates
In reply to: [Pure & Simple] TitleHello frankpipia.ca,
Yes,You can make your title two lines. Follow the following steps:
1. Go to your website> Dashboard>Appearance>Editor
2. Inside Editor in right side you will find section Select theme to edit. Select your theme in dropdown box.
3. Go down to bottom of Templates, you will find style.css. Open it and search for .site-title
4.Now change the following two things inside that.
margin: 0 auto;
width: 75%;I Hope that it will help in resolving your issue.
Thanks!!Hello christianboyce,
The excerpt is working fine to me after I make certain changes to the theme.You can see the output here: The Link
The changes I made were:
1.I created a new file called “category.php” and copied whole content of archive.php and pasted inside category.php
2. Then I upload category.php into the same directory as archive.php
3.Finally In customizer option I checked the box.”Check this box to show the excerpt instead of the full content on the front page, blog listing and archives.”I Hope that it will help in resolving your issue.
Thanks!!Forum: Themes and Templates
In reply to: [WEN Business] FEATURED IMAGE ON SEARCH RESULTSHello GoriGeek,
I’m sorry to hear that you’re having trouble. From what you’ve written, it seems that you’re having an issue with showing featured image in search result. Is that correct?
In that case, Please go through following steps :1. First create a child theme. You have to create a child theme visit the link https://codex.www.ads-software.com/Child_Themes
2. Next, copy file content-search.php from parent folder to child folder. In line 22 of that file replace the code between <div class=”entry-summary”> and </div> with the following code in child theme:
`<div class=”entry-summary”>
<?php if ( has_post_thumbnail()): ?>
<?php the_post_thumbnail(‘medium’); ?>
<?php endif ?>
<p class=”medium-thumb”>
<?php the_excerpt(); ?>
</p>
</div><!– .entry-summary –>`3. Now, go to
Dashboard >> Appearance >> Customize Option >> Themes Options >>Advanced Section
. You will find textarea for Custom Css. Place the code below inside Custom Css.p.medium-thumb{ margin-top:10px; }
Hope that it will help in resolving your issue.
Thanks!!