Kimi
Forum Replies Created
-
Forum: Reviews
In reply to: [WP Airdrop Manager] Plugin is greatThank for using WP Airdrop Manager. I’ll check this issue then update soon.
Forum: Reviews
In reply to: [Kades Crypto Widgets] dont fit with show pictureThank for use my plugin. Can you provide me url of website using this plugin I will check it. Maybe have to adjust little CSS.
I also have a free theme that compatible with Kades Crypto Widgets. You can see it here: https://www.ads-software.com/themes/bitcoinee/
Forum: Fixing WordPress
In reply to: Visual Composer is not working@amritosh it’s work perfectly!
Thanks for solved my headache.Forum: Fixing WordPress
In reply to: Mobile CampatibleHi Shubhangi,
You can choose responsive theme for your website or use plugin such as WP Touch (https://www.ads-software.com/plugins/wptouch/).WP Touch will turn your site mobile friendly.
Forum: Plugins
In reply to: [Simple Subscribe] Shortcode deletes all content on my page?Same problem, wait for author fix !
Forum: Fixing WordPress
In reply to: How Do I Remove Posted On & Posted By Author NameNice to hear that.
pls mark topic as resolvedForum: Fixing WordPress
In reply to: How Do I Remove Posted On & Posted By Author NameSorry, just checked it !
open file post-meta.php, remove from line 29 – 38. It’s div post meta ??Forum: Fixing WordPress
In reply to: How Do I Remove Posted On & Posted By Author NameHi,
open content.php and remove <div class=”post-meta”>Forum: Fixing WordPress
In reply to: Removing a search barCode IDE is a tool help you edit your code. Notepad++ is a lightweight and Free Code IDE. You can download from here: https://notepad-plus-plus.org/
After install it, open all files in your theme folder with notepad++, remember include files in sub-folder also.
Then Ctrl + F (Search) this keyword “search-bar” and hit Find All in All Opened documents.
Result sure include 1 or more file contain “search-bar”. Last step is remove content of search-bar div as you want.
Forum: Fixing WordPress
In reply to: Removing a search barHi Dave, open searchform.php of your theme then remove form.
If no searchform.php you can use this easy way: open all files of theme in Code IDE, then search “searchform” all open files.Result must include 1 file contain your searchform, remove it !
Forum: Fixing WordPress
In reply to: Trouble Editing FooterOpen all files in bazar folder with code IDE. Then you search “copyright” or “START COPYRIGHT”, result must include 1 file have this keyword and that’s your footer.
hope this help !
Forum: Fixing WordPress
In reply to: Show featured image inside post ONLY when post content is nullpaste your content.php here i will check it for you.
Forum: Fixing WordPress
In reply to: Show featured image inside post ONLY when post content is nullnice to see that ??
Forum: Fixing WordPress
In reply to: Show featured image inside post ONLY when post content is nullTry this, @cyazhan
<?php $content = get_the_content(); if( !null == $content ) the_content(); else echo the_post_thumbnail(); ?>
Forum: Fixing WordPress
In reply to: Centering Text Widget ContentHi Robbie,try this:
.widget_text {
text-align: center;
}??