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




Home / Themes / WordPress / Miscellaneous

Campoal - Petition Platform WordPress Theme
Compoal is a Complete WordPress theme to build Petition Platform, Social Movement and Non-profit ...




273 Support questions or comments
Please login or create an account to post a question or comment.
-
Jun 16, 2018systemfailed Purchasedhi conikal
Warning: count(): Parameter must be an array or an object that implements Countable in /home/birimzao/public_html/wp-content/themes/campoal/templates/ajax_comments.php on line 107
1 beğ
reply to user comments but I get the error
-
Jun 7, 2018stichtingmeo Purchased
- When signing a petition, there is a checkbox at the bottom where anyone can check whether they want to stay updated. Is is possible to make this option mandatory, so that people cannot choose to stay updated but are always updated? If this is not possible, is it possible then to place this checkbox above the 'sign' button?
- On our homepage (https://edev.meodemo.nl/) we use a recent petition module. By clicking here the petition opens in a new tab. Can you fix this please?
- In the featured petition above there are several buttons. The button for comments is not clickable. Can you fix this as well please? -
Jun 9, 2018conikal AuthorHi stichtingmeo,
This is user's option, I think they have permission to decice their petition thay want follow. if you want make is mandatory let use children theme to edit this fields.
- This is user experiance when click on placeholder image it'll open in new tab but when click on title is not open in new tab. this is option for user, some people want open in new tab but other want open in tab
- I'll add link for comment in future
Thanks
-
Jun 5, 2018systemfailed PurchasedI have any updates ? facebook login
-
Jun 9, 2018conikal AuthorI need work with Twitter API to replace Post on Facebook feature, so new version can update in August. in this time public_action permission also disable from facebook.
-
Jun 5, 2018Hi, is there way to see admin panel, before I purchase site.
Also we need that site you offer, but we need, that vote can only logged in persons and sign-in could be only form online banks, like manablass.lv, is it possible to add something like this in your theme?
Best Regards -
Jun 5, 2018conikal AuthorHi wdmarket
1 - You can check out admin dashboard on https://campoal.conikal.com/test/wp-admin/
username: admin
password: 123456
2 - when signing a petition it'll auto create new account on wordpress.
Regards
-
Jun 4, 2018Chris21 PurchasedI want to be able to collect name, email address and phone number and then download those details.
Is that possible? If so, how?
My developer tells me this theme doesn't do it, but that seems like basic functionality for a petition theme to me, so I thought I would ask.
Thanks. - View 1 more reply
-
Jun 6, 2018Pedrofre PurchasedHei could you share with us the changes that we need to do on download_csv.php?
-
Aug 23, 2018conikal AuthorHi Pedrofre,
Then open download_csv.php find line 18
Add:
esc_html__('Email', 'campoal',
to $column_name array, this will define label of column for CSV file.
next line 39 add:
$user_email = $user_data-> user_email;
this will add row's value for CSV column
next line 63 add:
$user_email variable just create to $user detail array.
note: the order of variable you add to $column_name and $user_detail need correct.
<?php
/*
Template Name: Download CSV
*/
/**
* @package WordPress
* @subpackage Campoal
*/
global $campoal_options;
if (isset($_GET['petition_id']) && $_GET['petition_id'] != ''{
$petition_id = sanitize_text_field($_GET['petition_id']);
$type = sanitize_text_field($_GET['download']);
$users_sign = get_post_meta($petition_id, 'petition_users', true);
$users_list = array();
$conlum_name = array(
esc_html__('User ID', 'campoal',
esc_html__('Email', 'campoal',
esc_html__('Date', 'campoal',
esc_html__('IP Address', 'campoal',
esc_html__('First Name', 'campoal',
esc_html__('Last Name', 'campoal',
esc_html__('Gender', 'campoal',
esc_html__('Birthday', 'campoal',
esc_html__('Neigborhood', 'campoal',
esc_html__('City', 'campoal',
esc_html__('State', 'campoal',
esc_html__('Country', 'campoal',
esc_html__('Reason', 'campoal'
);
array_push($users_list, $conlum_name);
foreach ($users_sign as $user) {
$user_sign_date = (array_key_exists('date', $user) ? $user['date'] : '';
$user_ip_address = (array_key_exists('ip_address', $user) ? $user['ip_address'] : '';
$user_data = get_userdata($user['user_id']);
if ($user_data) {
$user_id = $user_data->ID;
$user_email = $user_data->user_email;
$user_name = $user_data->display_name;
$user_firstname = $user_data->first_name;
$user_lastname = $user_data->last_name;
$user_address = get_user_meta($user_id, 'user_address', true);
$user_neigborhood = get_user_meta($user_id, 'user_neigborhood', true);
$user_city = get_user_meta($user_id, 'user_city', true);
$user_state = get_user_meta($user_id, 'user_state', true);
$user_country = get_user_meta($user_id, 'user_country', true);
$user_lat = get_user_meta($user_id, 'user_lat', true);
$user_lng = get_user_meta($user_id, 'user_lng', true);
$user_gender = get_user_meta($user_id, 'user_gender', true);
$user_birthday = get_user_meta($user_id, 'user_birthday', true);
$user_petition_count = count_user_posts( $user_id, 'petition' );
// get reason commnet
if (array_key_exists('comment_id', $user)) {
$comment = get_comment($user['comment_id']);
$comment = $comment ? esc_html($comment->comment_content) : '';
} else {
$comment = '';
}
$user_detail = array($user_id, $user_email, $user_sign_date, $user_ip_address, $user_firstname, $user_lastname, $user_gender, $user_birthday, $user_neigborhood, $user_city, $user_state, $user_country, $comment);
array_push($users_list, $user_detail);
}
}
// create csv download file
if (isset($_GET['download']) && $type == 'signatures'{
conikal_convert_to_csv($users_list, 'petition-signature-' . $petition_id . '.csv', ',';
}
}
?> -
Aug 23, 2018conikal AuthorReferent more data of user:
https://codex.wordpress.org/Function_Reference/get_userdata
-
Jun 1, 2018kfmimitov PurchasedHello,
I'm trying to translate the theme by directly editing the php files, however nothing happens. For example, I've translated the placeholder of the "I am signing because..." text area and it doesn't update.
Can you assist please -
Jun 2, 2018conikal AuthorIt's have 1 - 3 text, on editor you press Ctrl + F to find "I am signing because..." then replace it. Sure you have replace all that.
-
Jun 2, 2018kfmimitov PurchasedYes I'm absolutely sure!
-
Jun 1, 2018Pedrofre PurchasedHello guys how are you?
I have 3 issues with your theme:
1 - After submitted a petition (pending approval) when I go to dashboard>my petition and trying to click in my petition I have this error: https://imgur.com/a/eHSQpHQ at least it should give me the message that it's pending approval, or to disable to click on it. How can i do for this problem?
2 - The same user can sign the same petition infinite times, there is an option to limit the number of signs per user?
3 - There is a possibility to include the option to create the crowdfunding campaign inside the "Start Petition" form, like step5 for example?
Thanks for yout time. - View 4 more replies
-
Aug 3, 2018Pedrofre PurchasedGreat!| how i can update to the last version without losing the actual configurations on the theme?
-
Aug 3, 2018conikal AuthorJust swicth your theme to default theme then delete current campoal theme then upload new version campoal theme.
configurations is save to database, no matter what happens when upgrading, be confident -
Aug 23, 2018Pedrofre PurchasedHello it seems ok, but when i try to install the child theme i have this message:
Missing index.php file to theme.
The theme installation failed.
What is the solution?
-
May 28, 2018systemfailed Purchasedconıkal around here
) facebook login not working Do you have a knowledge
-
May 29, 2018conikal Authorby appying GDPR, facebook has removed public action permisstion, is meaning facebook share box on theme will not working and facebook login also effected by this change.
I am working to fix that. be patience
Thanks -
May 29, 2018systemfailed Purchasedthank you
-
May 25, 2018systemfailed Purchasedhi conıkal facebook login is there a problem? I can not login
facebook alert
The Facebook App Review process and API permissions model have been updated. Learn More.
In order to maintain your current API access, your app will need to be submitted for review by August 1, 2018. If your app is not submitted for review, you will lose access to these permissions and features.
user_friends
user_link
user_gender
user_age_range
The Facebook Platform APIs have been updated with these changes. Please review the FAQ to ensure you request the correct permissions and features with your app review submission.
If access to the permissions and features is approved, the app may need to be associated to a verified business to complete App Review. -
May 25, 2018systemfailed Purchasedfacebook login does not work
-
May 22, 2018systemfailed Purchasedhı conıkal google analytic code in which file I need 2 pieces of code to clean Google analytic does not work
-
May 23, 2018conikal AuthorIt's moved to Settings > General
http://prntscr.com/jlinpn -
May 23, 2018systemfailed Purchasedthank you now work
)
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 |