shondalai.com Forum

Welcome, Guest
Recent activity
  • Segaert Vincent replied to the topic Survey url doesn't work .

    January 25 at 12:08 pm

    It's ok the problem is solved

    8 years ago

  • Segaert Vincent created new topic Survey url doesn't work .

    January 25 at 9:55 am

    Hello I created a survey. When I go to the URL of my investigation I arrive on my homepage but I do not see the investigation. How to do ? Thank you

    8 years ago

  • Maverick replied to the topic is possible to remove the: Poll created by ....

    January 25 at 3:34 am

    Alexandru Iulian Vlad wrote: For me, it's getting an error, " Parse error: syntax error, unexpected '}' in /home/.../public_html/components/com_communitypolls/layouts/default/polls_list.php on line 217" You have done something wrong with the code. Replace the file from original package and do the change to only that line.

    8 years ago

  • Maverick replied to the topic Show Poll Answers in Polls listing page.

    January 25 at 3:29 am

    1. You need to load them from database. Usually any listing page do not load full details as it is not needed. Same the case here. Edit models/polls.php and load answers for all the polls. You may use some tricks to improve performance. For example, get all poll ids in an array and fetch all answers of all polls at once from database. After fetching map the answers to respective polls in your php code. The easiest and safest way you may think about (bug overhead on performance) is loading each poll separately using the poll model. for example, JLoader::import('poll', JPATH_COMPONENT.'/models');$pollmodel = JModelLegacy::getInstance( 'poll', 'CommunityPollsModel' );for($id in $pollids){ $polls[$id] = $pollmodel->getItem($id);} 2. You need to render each poll in a loop. See the poll view layout code. 

    8 years ago

  • Alexandru Iulian Vlad replied to the topic is possible to remove the: Poll created by ....

    January 24 at 10:56 pm

    For me, it's getting an error, " Parse error: syntax error, unexpected '}' in /home/.../public_html/components/com_communitypolls/layouts/default/polls_list.php on line 217"

    8 years ago

  • Alexandru Iulian Vlad replied to the topic Problem with Share poll.

    January 24 at 10:49 pm

    Hello,   I have sent details.   Thanks

    8 years ago

  • Feras replied to the topic Show Poll Answers in Polls listing page.

    January 24 at 7:23 pm

    I'm trying to implement this myself but I faced some problems: 1- When I tried to var_dump the item object in polls listing page there is no answers property. So I can't get the answers, how can I load answers in polls listing page? 2- A different approach I found and that you use is to load the vote form in poll template. How can I load the template in polls listing page per each item? <form class="voting-form" name="voting-form" <?php echo $default_view == 'form' ?  '' : ' style="display: none;"';?> action="<?php echo JRoute::_(CommunityPollsHelperRoute::getPollRoute($this->item->slug, $this->item->catslug, $this->item->language))?>"> <?php echo $this->loadTemplate('answers');?> </form> I couldn't load this template in polls listing page. What changes should I apply? Thanks,  

    8 years ago

  • Maverick replied to the topic problem in arabic language with cjblog points plugins.

    January 24 at 6:42 am

    Just confirm, I had a similar issue earlier with one database. Although table is with utf-8 Collation, the description column of the table xxx_cjblog_point_rules is with different collation. So I believe same is the case in your database. Please check Collation of the description column.

    8 years ago

  • Maverick replied to the topic problem in arabic language with cjblog points plugins.

    January 24 at 5:17 am

    Can you please post the screenshot of all xxx_cjblog_* tables?

    8 years ago

  • basim kamal replied to the topic problem in arabic language with cjblog points plugins.

    January 23 at 8:24 pm

    but this don't happen with the title of same form and others data ( articles , modules ,... )   this capture to my database   i think there are problem with connection or input codes , i'm not pro in proggraming 

    8 years ago

  • Maverick replied to the topic latest articles: blog page, page 2 has no CSS.

    January 23 at 2:22 pm

    1. Please let me know where can I see the issue. 2. You need to exlcude or include your category ids in "Content - CjBlog" plugin. This plugin will handle the article styling.

    8 years ago

  • Maverick replied to the topic Popup message for voting.

    January 23 at 2:19 pm

    Presently it is not possible. I will add this in the next version.

    8 years ago

  • Maverick replied to the topic Problem with Share poll.

    January 23 at 2:18 pm

    I can't view the page as it needs login. Please send me login details using contact us form.

    8 years ago

  • shabooboo booboo created new topic latest articles: blog page, page 2 has no CSS.

    January 22 at 8:32 pm

    Hey all, Im having a couple small issues with my CJ Blog setup   When I go to the CJ Blog view blog posts page it looks fine. But, when you click to view the 2and page of blog posts the posts show up but all of the CSS does not seem to be intact. Its just a white page with the posts there. The other issue is that the "written by super user" header and powered by CJ Blog footer are showing up on pages that are not even in the blog. I specified in the CJ Blog back end to exclude all categories except the blog category and its showing up on pages that are not in the blog category. Any help?

    8 years ago

  • Alexandru Iulian Vlad created new topic Popup message for voting.

    January 22 at 6:25 pm

    Hello,   Is it possible to add a popup window with THANKS FOR VOTING, instead of what is right now? Please look at the attachments, basically the message is not even visible, it's between other messages.   Thanks!

    8 years ago

  • Alexandru Iulian Vlad created new topic Problem with Share poll.

    January 22 at 6:20 pm

    Hello, please check: http://www.musichigh.ro/orase/sector-1/115-colegiul-economic-v-madgearu and click on "SHARE / EMBED THIS POLL", it has an error to it, it goes down, but it's not allowed to, please help me solve this issue with the button. Thanks!

    8 years ago

  • Maverick replied to the topic problem in arabic language with cjblog points plugins.

    January 22 at 6:12 pm

    So that means your database tables are not utf-8 enabled. Please check and change encoding type.

    8 years ago

  • basim kamal replied to the topic problem in arabic language with cjblog points plugins.

    January 22 at 1:40 pm

    yes i able to write arabic text but after save it , error appear  

    8 years ago

  • Maverick replied to the topic problem in arabic language with cjblog points plugins.

    January 22 at 1:03 pm

    Are you able to enter arabit text in description in this form? Does the arabic text persist after you save?

    8 years ago

  • Maverick replied to the topic Presales: multi selection radio button polls.

    January 22 at 1:01 pm

    Its because of the wrong configuration of the poll. Minimum and Maximum answer restrictions applicable for multiselection checkboxes type polls. It should not be used for grid polls. Please check the poll now.

    8 years ago

Powered by CjForum