Aminul Haq Siam
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Please suggest plugin for dropshipping profit shareHello @sabakhurrum,
You need to use the affiliate types plugin. You can search for wp affiliate types of plugins in the plugin repository. You can check which plugin matches your feature.
Forum: Developing with WordPress
In reply to: wordpress website with hackathnsHello @udayavani19,
You can use below themes and plugins to create hackathon type of website.
Themes – Divi, Astra
Plugins – Profile Builder Plugin, ACF, WP User Frontend, Gravity forms, etc.
Hope this themes and plugins will help you.
Forum: Fixing WordPress
In reply to: Unable delete a pageHello @itztanmay,
You can clear website cache, and Check your log file for any errors.
Forum: Everything else WordPress
In reply to: photo organizingHello @cubmanky,
I don’t know if you can easily find this type of plugin. However, you can check of this 2 plugins.
Forum: Installing WordPress
In reply to: WP with Github/GitlabHello @hatem15,
Yes, you can be collaborating with others or a team by using GitHub. And GitHub is totally free of cost.
Forum: Everything else WordPress
In reply to: How to make Ajax Load More for Long posts?Hello @ditulis,
https://weichie.com/blog/load-more-posts-ajax-wordpress/
I think you will get some valuable information in load more posts by coding.
But if you want to use WordPress plugin, this plugin will be the best option for you.
Forum: Fixing WordPress
In reply to: Call to undefined function get_header()Hello @chcw,
This problem happens because WordPress core is not loaded for directly loaded template files. Use this code before get_header function. If not solve let me know.
<?php if (!defined('ABSPATH')) exit; get_header(); ?>
Forum: Fixing WordPress
In reply to: Call to undefined function get_header()Hello @chcw,
I think it will solve your problem.
Forum: Everything else WordPress
In reply to: post with js and phpForum: Everything else WordPress
In reply to: Excluding a shortcode element from individual pagesHello @adam555,
You can try this method to exclude.
function shortcode_function($atts, $content = null) { // Check if the current page is excluded if (is_page('page-slug)) { return ''; // Return an empty string to exclude the shortcode } // Process the shortcode and return content return '<div class="shortcode-content">' . $content . '</div>'; } add_shortcode('shortcode', 'shortcode_function');
Forum: Everything else WordPress
In reply to: Excluding a shortcode element from individual pagesHello @adam555,
You can check this plugin. I think it will help you. If you don’t understand i will share with you how to excluded shortcode by coding.
Forum: Everything else WordPress
In reply to: Excluding a shortcode element from individual pagesHello @adam555,
Yes, it is possible to exclude a shortcode on individual pages.
- This reply was modified 1 year, 8 months ago by Aminul Haq Siam.
Forum: Everything else WordPress
In reply to: Users loginI think it’s a problem of .htaccess most probably. I am not sure.
It cannot be said clearly without looking at it completely. You can contact with WordPress developer. Thanks.Forum: Developing with WordPress
In reply to: Check if Featured Image Is Set Before PublishingHello @samuelbacay,
I think it will work on block editor. You can check. If not work let me know. Thanks
- This reply was modified 1 year, 8 months ago by Yui.
- This reply was modified 1 year, 8 months ago by Aminul Haq Siam.
Forum: Everything else WordPress
In reply to: Users loginHello @akpae5,
If you read the above blog well I think you have understood. However, If not understood i think you need to consult with a wordpress developer to resolve it. It’s not a big problem. It happens because of plugin conflicts, .htaccess, cookies, URL settings, etc.