Muhammad Ismail
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to add a "blank" frontpageHi Terjemk,
Two things:
1. When you setup static page in settings->reading, you need to select Blog page also for posts (your other page or page to archive/links) so instead of sending to index.php for next page, you send to that page i.e. /blog
2. or you use a plugin like this:
https://www.ads-software.com/plugins/wp-splash-page/Forum: Fixing WordPress
In reply to: Template not showing correctlyHi,
The demo you see on their sites has stuff intact i.e. Demo data and settings and widgets and menus setup the way they want to show in the demo.
However when you install that theme in your website, but you do not have that demo data in your theme and not setup the similar settings, widgets etc, you will see mostly just the empty site.
I suggest you contact your theme seller or consult their documentation, and try to find that how you can setup your site as per the demo they have setup, they might give you sample data to import to mimic the settings or give in detail tutorial that how you can tweak which setting where to make your site look like the demo.
Let me know if you still confused on any aspect of this.
Forum: Fixing WordPress
In reply to: I need testing products for woocommerceHi,
You may import dummy xml included with Woocommerce.
See for details:
https://docs.woothemes.com/document/importing-woocommerce-dummy-data/Forum: Fixing WordPress
In reply to: [Menu] Hide some menu for contributor user in wp-admin sideGreat! Thanks for marking the thread resolved and updating that issue was resolved! Have a good day! ??
Forum: Fixing WordPress
In reply to: Posting Blog Posts To Multiple WordPress SitesYou need to look into WordPress Multisite feature:
https://codex.www.ads-software.com/Create_A_NetworkForum: Fixing WordPress
In reply to: Disableing Account ActivationHi,
See if this plugin work in your case, as it says exactly what you wanted:
https://www.ads-software.com/plugins/bp-disable-activation-reloaded/
Or if you are comfortable with PHP and can extend BuddyPress with in bp-custom.php file read doc here:
https://codex.buddypress.org/themes/bp-custom-php/add_filter( 'bp_registration_needs_activation', '__return_false' );
Forum: Fixing WordPress
In reply to: Search barHi Mike,
1. Your advanced custom search plugin should work if it support search from custom post type i.e. property cpt (custom post type) in this case
e.g. a plugin like this
https://www.ads-software.com/plugins/advanced-custom-post-search/2. Now a days most plugins offer short-codes, which you can use to output your stuff..search form in this case. You can use the short-code provided by your search plugin and embed it in just any post/page inside the content body, this way you can have your search form appear in the center of the page body as you wanted. (I see above plugin offers shortcodes and also support custom post type. Sorry I have not used that plugin before so you have to test)
Forum: Hacks
In reply to: Show footer and header in adminYou want to customize the admin panel/dashboard to have your own branding?
You might look into this plugin:https://www.ads-software.com/plugins/white-label-cms/
Using it you can customize many aspects of WordPress dashboard and have your own branding there.
Forum: Fixing WordPress
In reply to: Same first comment on every articleWordPress database stores comments in a way that ONE comment can be assigned to ONE post ID.
So for a comment to be assigned to another post, it needs to exist again, I mean we cannot just use ONE comment entry in database for many posts in current schema.
Maybe you need to do some hacking in your single.php template of your theme.. e.g. something like this;
Assuming we have a comment id 1 in wp_comments table in database.
We can have template do :
1. Show the current post
2. Fetch comment_ID=1 from db and show that comment here
3. Show current post’s commentsForum: Fixing WordPress
In reply to: [Menu] Hide some menu for contributor user in wp-admin sideHi,
I suggest you use this extensive plugin, free plugin, to hide any WP-Admin menu
Forum: Fixing WordPress
In reply to: Assign tag to categoryHi,
There is no default functionality for such feature in WordPress core, however you can try to find some plugin for that:
Quick Google search shown this old plugin which does exactly what you wanted, see if it works for you:
https://www.ads-software.com/plugins/tag-grouping/Forum: Fixing WordPress
In reply to: Posting new posts on more than one page?Great!
You may mark this topic resolved please!
Thanks
MohsinForum: Fixing WordPress
In reply to: Lost my wordpress SiteHi,
It seems like your domain is not added in your control panel/ hostgator hosting.
Are the DNS of your domain are not which your current hosting account have.
I suggest you contact your hosting company, hostgator in this case. They can help you get your website back online and see what caused the issue that your domain is removed from the hosting or dns changed…
Forum: Fixing WordPress
In reply to: adding and modifying using filters and action hooksHi,
You are doing it the right way. You are not deregistering the excerpt, you are just hooking/unhooking the excerpt code from one hook to other hook, just changing the order.
Filters are to change the return output of the functions which is not the case here.
Forum: Fixing WordPress
In reply to: In a big and need help in post pagination with imagesHi Ahmed,
You need to put your images in gallery
https://en.support.wordpress.com/gallery/
and then use some plugin like JetPack free plugin which can present awesome carousel to browse all images in full screen, one by one