No its empty. I have used print_r($_FILES); on actionSaveStore() method and it printed an empty array on console.
My template code is as follows
<xen:form action="{xen:adminlink 'store/saveStore', $store}" method="post" class="xenForm formOverlay AutoValidator" data-redirect="on"...
I have checked a similar addon using image upload option. The addon is bdShop. But still I am getting false return value for
XenForo_Upload::getUploadedFile('imagename'); ?
Is there any permission needed? I have noticed a _preDispatch($action) method on the ControllerAdmin. Is there anything...
I have one default style and a custom theme. I have tried clearing all contents of the waindigo_footer_node_customfields and waindigo_header_node_customfields of both default style and custom style. The dropdown custom field is still showing up. :(
@Jon W , Any suggestions for my problem ?
Yes.
This is my waindigo_footer_node_customfields template now
<xen:if hascontent="true">
<div class="pairsRows secondaryContent">
<xen:contentcheck>
<xen:foreach loop="$thread.customFields" key="$groupId" value="$groupCustomFields">
<xen:foreach...
I have tried removing the <xen:comment> tag from waindigo_footer_node_customfields and added to waindigo_header_node_customfields.
But its still showing the same result as before. :(
Thanks for the reply. You mean this message?
Added new template waindigo_footer_node_customfields to allow custom fields to be displayed below the message content instead of above (just move the<xen:comment> tags).
Can you specify exactly which file is to be modified?
Hi,
I am using custom fields for thread and I have two dropdown list. I would like to fetch these values and show them on thread_list template. How can I achieve that?
Hi,
I am trying to add an upload image feature for my addon. Is there any tutorials or references on how to upload a file using Xenforo Admin panel?
I have found this and helped me to complete the Admin Template and Controller. But upon using this code, I am always getting false from...
Hi,
I am trying to fetch some data from the database and I need to return an array like this :
Array (0=>'Snapdeal',1=>'Flipkart',)
I am doing something like this :
public static function getFeaturedStores()
{
$array = array();
$db = XenForo_Application::get('db')...