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 votesHome / 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.0271 Support questions or comments
Please login or create an account to post a question or comment.
-
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 )
-
May 11, 2018kfmimitov PurchasedHello,
I'm getting these errors on the single petition page:
Warning: array_reverse() expects parameter 1 to be array, string given in /home/grajzhds/petitions/wp-content/plugins/campoal-tapo/shortcodes/supporters.php on line 30
Warning: array_slice() expects parameter 1 to be array, null given in /home/grajzhds/petitions/wp-content/plugins/campoal-tapo/shortcodes/supporters.php on line 49
Warning: Invalid argument supplied for foreach() in /home/grajzhds/petitions/wp-content/plugins/campoal-tapo/shortcodes/supporters.php on line 55
Can you assist me with fixing this bug?
Best regards,
Ivan - View 9 more replies
-
May 12, 2018kfmimitov PurchasedHi,
Thank you! Worked perfect. -
May 12, 2018kfmimitov PurchasedHi,
One more question, can you tell me how to add prloperly the background video on the single petition homepage. I've chosen video under "Homepage header type", but the video is stuck on the first caption and does not play.
Thanks -
May 12, 2018conikal AuthorYou should choose light weight video format with 5-8MB, some video you uploaded is too big for loading from your server.
Tips: Using video background on page is bad idea, is will take a alot bandwith and CPU from server both effect to pagespeed on client. You should consider only using light weight image or graphic image for better.
-
Apr 26, 2018Glow PurchasedHi Conikal,
Just bought your theme. I'm hurry to use it !
I have searched on the downlaoded files but not found it : There is a document who explanes how to install correctly your theme ? Thank you in advance !!
- View 5 more replies
-
May 9, 2018conikal AuthorSorry, I was moved it to subdomain, now you can find it on https://campoal.conikal.com/documentation/
-
May 17, 2018Glow PurchasedNo problem Thank you for your quick reply !
Conikal,
I 'm trying to translate the different pages of the theme without use poedit. But when I want to acces to the page "start a petition" for example, I can not access to the texts on wordpress. I think it is normal but how can I translate the page ? I just want to translete directly on wordpress if it is possible. Thank you for your help.
Also, I have uploaded a picture for my homepage. for the desktop version no problem, but on my mobile, the picture and the toplines are not responsive. How can I do to fix this problem ?
Have a nice day !
Glow -
May 17, 2018conikal AuthorYou can use Loco Translate plugin to translate on wordpress without Poedit.
https://wordpress.org/plugins/loco-translate/
Currently, homepage background image only adjust on middle center. I'll note that to add option in future.
or you can edit it on line 391 theme.css and minify to theme.min.css file in children theme.
Regards
Information
Category | Themes / WordPress / Miscellaneous |
First release | 5 February 2017 |
Last update | 18 April 2024 |
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 |