<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Question2Answer Q&amp;A - Recent questions tagged plugin-development</title>
<link>https://www.question2answer.org/qa/tag/plugin-development</link>
<description>Powered by Question2Answer</description>
<item>
<title>[PAID] Taking custom Q2A jobs/orders for plugins and themes</title>
<link>https://www.question2answer.org/qa/121593/paid-taking-custom-q2a-jobs-orders-for-plugins-and-themes</link>
<description>

&lt;p&gt;After stepping away from Question2Answer plugin development in 2020 to focus on mobile app development, I’ve continued to receive requests to update, improve, or create custom plugins.
&lt;br&gt;
&lt;br&gt;Given the ongoing interest and discussions in the community, I’ve decided to resume offering Q2A plugin services alongside my current work.
&lt;br&gt;
&lt;br&gt;I’ve shared some of my past work below for reference:
&lt;br&gt;&lt;img alt=&quot;&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=5422481841334559831&quot; style=&quot;height:422px; width:600px&quot;&gt;&lt;/p&gt;

&lt;p&gt;My Github Profile: &lt;a rel=&quot;nofollow&quot; href=&quot;https://github.com/SiroDevs&quot;&gt;https://github.com/SiroDevs&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;https://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=2409897248527987134&quot; style=&quot;height:790px; width:600px&quot;&gt;
&lt;br&gt;
&lt;br&gt;If you’re interested in working together, feel free to reach out via:
&lt;br&gt;1. Telegram: &lt;a rel=&quot;nofollow&quot; href=&quot;http://t.me/sirodevs&quot;&gt;@sirodevs&lt;/a&gt;
&lt;br&gt;2. Email: &lt;a rel=&quot;nofollow&quot; href=&quot;mailto:sirodevske@gmail.com&quot;&gt;sirodevske [at] gmail [dot] com&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;I value respectful and constructive communication, and I ask that we interact with mutual professionalism and kindness.
&lt;br&gt;
&lt;br&gt;Service Pricing:&lt;/p&gt;

&lt;ul&gt;

&lt;li&gt;Basic Plugin Development: starting at &lt;strong&gt;$ 30&lt;/strong&gt;&lt;/li&gt;

&lt;li&gt;Fixing/Updating an Existing Plugin: starting at &lt;strong&gt;$10&lt;/strong&gt; (based on scope)&lt;/li&gt;&lt;/ul&gt;

&lt;p&gt;
&lt;br&gt;Looking forward to collaborating with you!&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/121593/paid-taking-custom-q2a-jobs-orders-for-plugins-and-themes</guid>
<pubDate>Wed, 04 Feb 2026 04:05:15 +0000</pubDate>
</item>
<item>
<title>[PAID] Taking orders for custom plugin</title>
<link>https://www.question2answer.org/qa/116152/paid-taking-orders-for-custom-plugin</link>
<description>

&lt;p&gt;If you need any custom plugin you can contact you me with your requirements. I can develop that for money. My contact links included below:&lt;/p&gt;

&lt;blockquote&gt;

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://m.me/sfsakhawat999&quot;&gt;Messenger&lt;/a&gt; | &lt;a rel=&quot;nofollow&quot; href=&quot;https://wa.me/8801516548551&quot;&gt;WhatsApp&lt;/a&gt; | &lt;a rel=&quot;nofollow&quot; href=&quot;https://t.me/sfsakhawat999&quot;&gt;Telegram&lt;/a&gt; | &lt;a rel=&quot;nofollow&quot; href=&quot;mailto:urssmbtrend@gmail.com&quot;&gt;eMail&lt;/a&gt;&lt;/p&gt;&lt;/blockquote&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/116152/paid-taking-orders-for-custom-plugin</guid>
<pubDate>Thu, 30 Jan 2025 12:37:34 +0000</pubDate>
</item>
<item>
<title>Can i add a widget on the same position eg &quot;Main area - Top&quot; more than one times?</title>
<link>https://www.question2answer.org/qa/114843/add-widget-the-same-position-main-area-top-more-than-one-times</link>
<description>

&lt;p&gt;I am building a new widget and I would like to ask if there is any way programmatically to let admins to add this widget more than one times in the same position. In my case at the position &quot;Main area -Top&quot;. How can I achieve this behavior?
&lt;br&gt;
&lt;br&gt;I checked the file admin-widgets.php and found this part of code:&lt;/p&gt;

&lt;blockquote&gt;

&lt;p&gt;$region = $regioncodes[substr($place, 0, 1)];
&lt;br&gt;
&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $widgetallowed = method_exists($module, 'allow_region') &amp;amp;&amp;amp; $module-&amp;gt;allow_region($region);
&lt;br&gt;
&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ($widgetallowed) {
&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach ($widgets as $widget) {
&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if ($widget['place'] == $place &amp;amp;&amp;amp; $widget['title'] == $editwidget['title'] &amp;amp;&amp;amp; $widget['widgetid'] !== @$editwidget['widgetid'])
&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $widgetallowed = false; // don't allow two instances of same widget in same place
&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;
&lt;br&gt;But how can I override this code in my custom widget file as I dont want to modify core files?? I need the $widgetallowed var to be true. -&amp;gt; $widgetallowed = true;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/114843/add-widget-the-same-position-main-area-top-more-than-one-times</guid>
<pubDate>Tue, 17 Sep 2024 14:21:19 +0000</pubDate>
</item>
<item>
<title>Any plugin developer here? I need a premium plugin.</title>
<link>https://www.question2answer.org/qa/112971/any-plugin-developer-here-i-need-a-premium-plugin</link>
<description>

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://Gyaany.com/838&quot;&gt;&lt;span style=&quot;color:#2c3e50&quot;&gt;i&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color:#000000&quot;&gt;&amp;nbsp;&lt;/span&gt;want to create a premium plugin by a developer. Please contact me.&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/112971/any-plugin-developer-here-i-need-a-premium-plugin</guid>
<pubDate>Mon, 25 Mar 2024 16:09:15 +0000</pubDate>
</item>
<item>
<title>I need a programmer for customization</title>
<link>https://www.question2answer.org/qa/107594/i-need-a-programmer-for-customization</link>
<description>

&lt;p&gt;Hi,
&lt;br&gt;I'm looking for a good developer for custom work on my Q2A website.
&lt;br&gt;In particular, I need the option in the user area to delete own profile (according&amp;nbsp;&lt;span style=&quot;color:#34495e; font-family:Ubuntu,Helvetica,Arial,FreeSans,sans-serif&quot;&gt;to GDPR).&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#34495e; font-family:Ubuntu,Helvetica,Arial,FreeSans,sans-serif&quot;&gt;Thanks&lt;/span&gt;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/107594/i-need-a-programmer-for-customization</guid>
<pubDate>Sat, 29 Apr 2023 11:07:11 +0000</pubDate>
</item>
<item>
<title>Anyone interested in helping me make a customized Q2A site (paid)?</title>
<link>https://www.question2answer.org/qa/101566/anyone-interested-in-helping-make-customized-q2a-site-paid</link>
<description>Hi! I'm working on a project to help promote media literacy for a student project. I'd like to make a Q2A site with some customization: mainly, I'd like to modify the answers form, so I can add more fields (maybe a plugin would make sense for that?). I don't code, so I'm looking to contract that out to someone (I have funding). Is anyone up for that/ interested? Thanks.</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/101566/anyone-interested-in-helping-make-customized-q2a-site-paid</guid>
<pubDate>Mon, 06 Jun 2022 00:50:59 +0000</pubDate>
</item>
<item>
<title>[paid] Looking for developer for custom plugins</title>
<link>https://www.question2answer.org/qa/96984/paid-looking-for-developer-for-custom-plugins</link>
<description>Hi!&lt;br /&gt;
I'm looking for developer for custom plugins for my site.&lt;br /&gt;
&lt;br /&gt;
I need first:&lt;br /&gt;
- quiz plugin - trivia + personality (like qpproquiz / snax / zombify for wordpress)&lt;br /&gt;
- bookies plugin (like Betpress for wordpress)&lt;br /&gt;
- open lists plugin (like snax/zombify for wordpress)&lt;br /&gt;
- music charts plugin&lt;br /&gt;
&lt;br /&gt;
...and maybe more.&lt;br /&gt;
&lt;br /&gt;
Of course paid work, I can agree for reselling plugin for other people too - just think about me as sponsor for new plugins.&lt;br /&gt;
&lt;br /&gt;
Payment - the best by paypal but also bank transfer possible.&lt;br /&gt;
&lt;br /&gt;
Please, send me PM or answer here if you are interested. I need to start with this as soon as possible :)&lt;br /&gt;
&lt;br /&gt;
@pupi1985? @ihlassovbetov ? Or maybe someone new? :)&lt;br /&gt;
&lt;br /&gt;
Best!&lt;br /&gt;
Peter</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/96984/paid-looking-for-developer-for-custom-plugins</guid>
<pubDate>Tue, 19 Oct 2021 14:35:19 +0000</pubDate>
</item>
<item>
<title>[PAID] Market Place Plugin Request.</title>
<link>https://www.question2answer.org/qa/96809/paid-market-place-plugin-request</link>
<description>Have a WordPress integrated custom shopping cart partnered with Q2A where login and other core connections are completely off. We are trying to model the Facebook marketplace and adapt things as needed. I was wondering if I can discuss this further as a project with any developer familiar with Q2A. PM for details and skype. Thank you.</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/96809/paid-market-place-plugin-request</guid>
<pubDate>Tue, 12 Oct 2021 13:00:17 +0000</pubDate>
</item>
<item>
<title>Make a Paid Security and Backup Plugin for Q2A</title>
<link>https://www.question2answer.org/qa/96493/make-a-paid-security-and-backup-plugin-for-q2a</link>
<description>

&lt;p&gt;Hi...&lt;/p&gt;

&lt;p&gt;Q2A Developers Community,&lt;/p&gt;

&lt;p&gt;Please make&amp;nbsp;&lt;strong&gt;Security &amp;amp; Backup Plugin&lt;/strong&gt; for Q2A. Yes, It will be paid plugin.&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/96493/make-a-paid-security-and-backup-plugin-for-q2a</guid>
<pubDate>Sun, 26 Sep 2021 13:59:11 +0000</pubDate>
</item>
<item>
<title>[I'll pay] Can you help develop a plugin that allows anonymous asking and answering of questions while logged in?</title>
<link>https://www.question2answer.org/qa/88662/develop-allows-anonymous-asking-answering-questions-logged</link>
<description>

&lt;p&gt;Please contact me if I can hire you to develop a plugin that does the following:&lt;/p&gt;

&lt;ul&gt;

&lt;li&gt;Allows &lt;strong&gt;logged in users&lt;/strong&gt; to post &lt;strong&gt;questions or answers&lt;/strong&gt; anonymously.&lt;/li&gt;

&lt;li&gt;Allows users to &lt;strong&gt;hide their activities&lt;/strong&gt; (questions asked and answered) on their profile page, from other users.&lt;/li&gt;&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;P.s. if you need this plugin and want to crowdfund it with me, message me as well.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Thanks.&lt;/em&gt;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/88662/develop-allows-anonymous-asking-answering-questions-logged</guid>
<pubDate>Mon, 26 Oct 2020 13:49:40 +0000</pubDate>
</item>
<item>
<title>Programmer wanted to work with question and article page</title>
<link>https://www.question2answer.org/qa/85904/programmer-wanted-to-work-with-question-and-article-page</link>
<description>

&lt;p&gt;&lt;span style=&quot;color:#000000; font-family:Roboto,&amp;quot;Helvetica Neue&amp;quot;,Helvetica,Arial,sans-serif; font-size:14px&quot;&gt;I am looking for person who has experience with q2a code.&lt;/span&gt;
&lt;br&gt;&lt;span style=&quot;color:#000000; font-family:Roboto,&amp;quot;Helvetica Neue&amp;quot;,Helvetica,Arial,sans-serif; font-size:14px&quot;&gt;I have few features to be added with article plugins and question page.&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:#000000; font-family:Roboto,&amp;quot;Helvetica Neue&amp;quot;,Helvetica,Arial,sans-serif; font-size:14px&quot;&gt;Please message me anyone who can do this.&lt;/span&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/85904/programmer-wanted-to-work-with-question-and-article-page</guid>
<pubDate>Sat, 11 Jul 2020 12:48:52 +0000</pubDate>
</item>
<item>
<title>Search within a category, is it possible? I need such a plugin</title>
<link>https://www.question2answer.org/qa/85689/search-within-a-category-is-it-possible-i-need-such-a-plugin</link>
<description>

&lt;p&gt;Just like Github, you can search within a repository and the whole Github system, I would like to replace the default Q2A search feature with a more dynamic search tool.
&lt;br&gt;
&lt;br&gt;When you are viewing a question, it is supposed that you have categoryid variable. All also, when you are viewing a category, or its question lists, you also have categoryid. I would like the search tool to have an additional option to search within this category.
&lt;br&gt;
&lt;br&gt;In all other cases, the default search feature should prevail.
&lt;br&gt;
&lt;br&gt;Isn't it possible?
&lt;br&gt;
&lt;br&gt;Is there such a plugin out there?
&lt;br&gt;
&lt;br&gt;&lt;span style=&quot;text-decoration: line-through;&quot;&gt;Is there someone I can hire to develop this plugin?&lt;/span&gt;&amp;nbsp;&amp;nbsp; (I gave up and use other alternatives)&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/85689/search-within-a-category-is-it-possible-i-need-such-a-plugin</guid>
<pubDate>Sun, 05 Jul 2020 04:00:38 +0000</pubDate>
</item>
<item>
<title>Customization, Author box on article page required</title>
<link>https://www.question2answer.org/qa/85683/customization-author-box-on-article-page-required</link>
<description>I need some customization with article plugin , i need author box from user page to appear on right side of article page as well as bottom of article page with customized fields.&lt;br /&gt;
&lt;br /&gt;
Anyone experience with q2a code please contact me asap.</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/85683/customization-author-box-on-article-page-required</guid>
<pubDate>Sat, 04 Jul 2020 22:17:52 +0000</pubDate>
</item>
<item>
<title>Premium Plugin Request: Category star ratings and review</title>
<link>https://www.question2answer.org/qa/85349/premium-plugin-request-category-star-ratings-and-review</link>
<description>Hello,&lt;br /&gt;
&lt;br /&gt;
I would like to hire someone who can make a plugin (or plugins) that has some following features:&lt;br /&gt;
&lt;br /&gt;
- This plugin allows users to star-rate a category, on a scale of common 5 star ratings system (or 10 point rating system). The averaged ratings score will be shown on the category main page. This should come with a widget to show the top 10 categories with highest ratings.&lt;br /&gt;
&lt;br /&gt;
- This plugin allows users to write a review of a category. Please note that each category has Q2A questions, and this feature must be independent of those Q2A questions.&lt;br /&gt;
&lt;br /&gt;
Example: site.com/category-name will display all Q2A questions belonging to that category. And site.com/category-name/reviews will display all reviews about that category.&lt;br /&gt;
&lt;br /&gt;
While the first feature may be easy, the second one is really challenging.</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/85349/premium-plugin-request-category-star-ratings-and-review</guid>
<pubDate>Sat, 27 Jun 2020 04:01:16 +0000</pubDate>
</item>
<item>
<title>Plugin to store files in Amazon S3 rather than database as blob.</title>
<link>https://www.question2answer.org/qa/83151/plugin-to-store-files-in-amazon-s3-rather-than-database-blob</link>
<description>I need a Plugin to store files in Amazon S3 rather than the database as a blob.&lt;br /&gt;
Can anyone build this plugin? I can pay for it.&lt;br /&gt;
&lt;br /&gt;
The plugin should work on any version of Q2A.</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/83151/plugin-to-store-files-in-amazon-s3-rather-than-database-blob</guid>
<pubDate>Mon, 27 Apr 2020 17:58:50 +0000</pubDate>
</item>
<item>
<title>Looking for some paid programming help for Q2A</title>
<link>https://www.question2answer.org/qa/79734/looking-for-some-paid-programming-help-for-q2a</link>
<description>I would like to hire someone who is experienced with Q2A to do some development. This would include some theme adjustments, plugin adjustments and suggestions and implementation of optimizations such as server settings and other settings that will help with performance. If you are interested please respond and let me know.</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/79734/looking-for-some-paid-programming-help-for-q2a</guid>
<pubDate>Tue, 03 Dec 2019 00:08:34 +0000</pubDate>
</item>
<item>
<title>Looking for ability to filter questions by type (reviews, news, interviews etc.)</title>
<link>https://www.question2answer.org/qa/69145/looking-ability-filter-questions-type-reviews-interviews</link>
<description>Hello,&lt;br /&gt;
&lt;br /&gt;
I need plugin or any other way to add this feature for my site. Hope it will be interesting for others :)&lt;br /&gt;
&lt;br /&gt;
site.com/questions/category/TYPE or &lt;a href=&quot;http://site.com/questions/category?type=reviews&quot; rel=&quot;nofollow&quot;&gt;http://site.com/questions/category?type=reviews&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
+ add dropdown on submit/ask page with available types for this filter.&lt;br /&gt;
&lt;br /&gt;
Core hack or plugin. Anyone have some idea or interested to make plugin for this?&lt;br /&gt;
&lt;br /&gt;
Peter</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/69145/looking-ability-filter-questions-type-reviews-interviews</guid>
<pubDate>Tue, 13 Nov 2018 15:19:31 +0000</pubDate>
</item>
<item>
<title>Planning (schedule) posts/questions - looking for plugin developer</title>
<link>https://www.question2answer.org/qa/67431/planning-schedule-posts-questions-looking-plugin-developer</link>
<description>Hello!&lt;br /&gt;
Anyone can make scheduled posts/questions feature for Q2A ?&lt;br /&gt;
I mean ability to choose at which date post(question) will be published on site,&lt;br /&gt;
I need it ASAP , of course paid offer with option as non-exclusive (available to sale for others).&lt;br /&gt;
&lt;br /&gt;
Just PM me, so we can talk about this :)&lt;br /&gt;
&lt;br /&gt;
Peter</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/67431/planning-schedule-posts-questions-looking-plugin-developer</guid>
<pubDate>Thu, 20 Sep 2018 14:46:26 +0000</pubDate>
</item>
<item>
<title>Q2A Developer needed for hiring</title>
<link>https://www.question2answer.org/qa/64594/q2a-developer-needed-for-hiring</link>
<description>I need a Q2A developer to create some plugins and improvements&lt;br /&gt;
&lt;br /&gt;
I can not pay using Paypal because it does not support our regions&lt;br /&gt;
&lt;br /&gt;
So we can use freelancer.com or upwork&lt;br /&gt;
&lt;br /&gt;
Please add an answer , comment&lt;br /&gt;
&lt;br /&gt;
Or contact sending mail to munirr44@yahoo.com</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/64594/q2a-developer-needed-for-hiring</guid>
<pubDate>Tue, 19 Jun 2018 10:17:28 +0000</pubDate>
</item>
<item>
<title>Looking for plugins for sale or Q2A developer</title>
<link>https://www.question2answer.org/qa/64284/looking-for-plugins-for-sale-or-q2a-developer</link>
<description>Hello,&lt;br /&gt;
I'm looking for plugins offers exciting new features for sites based on q2a!&lt;br /&gt;
&lt;br /&gt;
I'm ready to pay. Especially searching for points and entertainment features. You've got something? Tell me in comments or PM me!&lt;br /&gt;
&lt;br /&gt;
I'm also looking for developer who can work with me on new features. Anybody interested?&lt;br /&gt;
&lt;br /&gt;
I will appreciated for any answer. Pay by paypal.&lt;br /&gt;
Peter</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/64284/looking-for-plugins-for-sale-or-q2a-developer</guid>
<pubDate>Mon, 04 Jun 2018 22:47:18 +0000</pubDate>
</item>
</channel>
</rss>