Home / Themes / WordPress / Miscellaneous
Campoal - Petition Platform WordPress ThemeCampoal - Petition Platform WordPress Theme
Compoal is a Complete WordPress theme to build Petition Platform, Social Movement and Non-profit website



Average rating of 5.0 based on 13 votes
Home / Themes / WordPress / Miscellaneous
Campoal - Petition Platform WordPress Theme
Compoal is a Complete WordPress theme to build Petition Platform, Social Movement and Non-profit ...



Average rating of 5.0
273 Support questions or comments
Please login or create an account to post a question or comment.
-
Sep 26, 2018Bin PurchasedThis is very good effort. I would like to appreciate the developer of this theme.
Facing some issue: The "post on Facebook" button is not working when you sign the petition. Both on mobile and web. What i am missing here? - View 4 more replies
-
Sep 27, 2018Bin PurchasedThanks. its works now. A popup is opened to share it. Can you check one more thing? if its on mobile is there any option open the facebook app directly to share ?
-
Sep 27, 2018conikal AuthorCurrent I don't find any way to open Facebook App when share a link. If you find any website allow share link by way Facebook App, please let me know.
-
Feb 6, 2019Kendrick Purchasedalso have this problem, FB and Twitter social shares DO NOT WORK.
-
Sep 26, 2018Mhaaraharyana PurchasedHey,
I havent received any update notification yet. How to have the latest update? - View 13 more replies
-
Sep 28, 2018Mhaaraharyana PurchasedHi
I have two questions:
Can we put logo or any custom text in the sign in/ sign up page popup.
Can we change size of login buttons for facebook and google. -
Sep 29, 2018conikal AuthorYou can copy file from template/user_modals.php to children theme and edit in that file.
-
Sep 29, 2018Mhaaraharyana PurchasedOk will try that. I just noticed there is no report content option?
Is this available
-
Sep 26, 2018Bin PurchasedI want to use Green Demo. (https://campoal.blue/green/) but when i use One click import demo, the end result is not as the Green Demo. What should I do?
p.s. before that i have tried importing this manually but still was not able to get it to https://campoal.blue/green/. -
Sep 26, 2018conikal AuthorHi Bin,
Are you set your homepage on Reading Setting? http://prntscr.com/kyw2j4
I just test import now, it's working fine.
Thanks -
Sep 26, 2018Bin PurchasedThanks
-
Sep 25, 2018Bin PurchasedI am not able to buy . What should i Do? - View 1 more reply
-
Sep 25, 2018Bin PurchasedAlright Let me give it a try. Thanks
-
Sep 25, 2018Bin Purchasedstill not able to buy the theme. no reply from support. I need the theme on urgent basis. Please help.
-
Sep 25, 2018conikal AuthorWhat problem you are facing?
You can click on Buy button and checkout by your Paypal account or Creadit Card. That is easy man!
-
Sep 22, 2018Mhaaraharyana PurchasedHi There
I am also trying to understand Sendin Blue functionality. Do we have to give unique id for every petition we create. How does it work.
I have activated the account. - View 3 more replies
-
Sep 25, 2018conikal AuthorTo use email service from SendibBlue for other email on website, you can request enable SMTP on SendinBlue then install SMTP mail plugin on website and configure it.
-
Sep 25, 2018Mhaaraharyana PurchasedThat is fine...
I wanted to take a targeted approach by personalize the email template for user by displaying post meta information like Title, Excerpt, Featured image and sharable links of the post he signed like they do in change.org.
Now one way is to manually adding this which wont work. As its a campaign website so every post have its separate email list of supporters so how to create template in sendinblue which is automatic so that each time user sign petition on website the template should pick up his signed petition information along with share links and display it in the email which he is going to receive (ref image https://imgur.com/6FOOgHY).
-
Sep 25, 2018conikal AuthorCurrently, have email confirm send for supporters when they signed a petition. http://prntscr.com/kye3f7
You can edit it on translate, I will add email template with meta infomation on other version.
Thanks
-
Sep 17, 2018Mhaaraharyana PurchasedHi Can you please revert:
1> How to change the color of 2nd CTA button as the default white is not going with my theme. You can see explore button in white I am talking about. https://prnt.sc/kv1fna
2> I tried to add sign petition block in about page but the text side is going stretched and not in the center as done by you in the theme. I copied everything from your page but something is not working out. https://prnt.sc/kv1eqs - View 10 more replies
-
Sep 22, 2018Mhaaraharyana PurchasedHey any update, havent received any mail yet...
-
Sep 25, 2018conikal AuthorHi guy, I just uploaded new version 1.1.0 on Codester, please waiting for 24 hours for Codester's Reviewer approve theme.
Thank you for wait! -
Sep 25, 2018Mhaaraharyana PurchasedWonderful
Cheers!
-
Sep 15, 2018Mhaaraharyana PurchasedHi I downloaded the theme and just started making the changes.
First of all hats off to you for building this. Currently I have started customizing homepage. I have chosen Homepage simple. Though the default petitions starts appearing but the hero image with the slider is not yet there. Can you please let me know how can i have both of these things as shown in the demo website. - View 11 more replies
-
Sep 16, 2018conikal AuthorYou should use all recommend plugin on notice is ok, include Campoal Tapo, WP Bakery, SendinBlue, Give and Contact form 7
-
Sep 16, 2018conikal AuthorYes you can, try test it.
-
Sep 16, 2018Mhaaraharyana PurchasedTwo last questions for the day.
1> How to change the color of 2nd CTA button as the default white is not going with my theme. You can see explore button in white I am talking about. https://prnt.sc/kv1fna
2> I tried to add sign petition block in about page but the text side is going stretched and not in the center as done by you in the theme. I copied everything from your page but something is not working out. https://prnt.sc/kv1eqs
-
Sep 10, 2018zaxmas PurchasedI have been trying to add a logo in the ' Theme Settings' without success. The image doesnt just get added! What do I do? See screenshot http://prntscr.com/ksrdim
- View 5 more replies
-
Sep 11, 2018conikal Authorsorry for wrong way to change permalink.
The best way to change slug petition is add this function to your children theme.
/*
CHANGE SLUGS OF CUSTOM POST TYPES
*/
function change_post_types_slug( $args, $post_type ) {
/*item post type slug*/
if ( 'petition' === $post_type ) {
$args['rewrite']['slug'] = 'cause';
}
return $args;
}
add_filter( 'register_post_type_args', 'change_post_types_slug', 10, 2 );
refer this: https://wordpress.stackexchange.com/questions/41988/redeclare-change-slug-of-a-plugins-custom-post-type -
Sep 13, 2018zaxmas PurchasedMuch appreciation for your help. The last code you sent worked awesomely! It successfully changed the petition permalink to ' cause' as requested.
I have also noted other instances which I would wish to have a the name ' cause' instead of ' petition'. For instance:
i. ' edit-petition'
ii. 'Start a Petition'
iii. ' My Petition'
iv. ' Signed Petitions'
v. ' Petition to'
vi. Replace of the name 'petition' in the notification emails with ' cause'
vii. 'petition_id'
viii. ' Sign Petition'
ix. '
I will appreciate if you can help me with the code to change name ' petition' to cause' in the ' Functions.php' file or otherwise.
Thanks in advance -
Sep 13, 2018conikal Author1 - Just access to Page from Dashborad and edit all the name and slug of page you listed to any name you want. http://prntscr.com/ktvx3g
2 - You can use Poedit software or Loco Translate plugin, open or create new translate file in theme/campoal/language/en.po and plugins/campoal-tapo/language/campoal-tapo_en.po
Use Find and replace feature to change Petition to Cause.
-
Sep 10, 2018emanuellombard PurchasedHi Conikal. Is it possible to either change or add a new field to the petition fields settings? I'd like to add a phone number option into there but I'm struggling to do so. Thanks! -
Sep 10, 2018conikal AuthorHi there,
I want know why you add phone number field to Petition Field? It's use for what?
I have plan to add phone number fields with OTP auth to user profile, do you can wait it?
Thanks -
Sep 10, 2018emanuellombard PurchasedIt is used for contacting the user if they wish to provide that information.
-
Aug 27, 2018systemfailed Purchasedhı conikal how R you I want to ask something a further update header picture size might be smaller
Information
| Category | Themes / WordPress / Miscellaneous |
| First release | 5 February 2017 |
| Last update | 9 October 2025 |
| HTML/CSS Framework | Semantic UI |
| Supported CMS | WordPress 5.0, WooCommerce 6.x, WordPress 5.8, WordPress 5.9 |
| Files included | .php, .css, .html, .xml, Javascript .js |
| JavaScript Framework | jQuery |
| Tags | foundation, non-profit, campaign, signature, fundraising, donations |
