XF2 [8WR] XenCarta 2 (Wiki) PRO

XF2 [8WR] XenCarta 2 (Wiki) PRO [Paid] 2.2.0.2

No permission to buy ($30.00)
how i can i change the special / pages urls?

for example:
wiki/special/pages
to
wiki/overview

I also want to change the:
special/activity/
special/templates/
Actually i want to change all the special sites :)

I did it with the public route filter but it didn't work.
Can someone help me with that?
 
Small additions I would like to see:

  1. Ability to order pages
  2. Ability to hide pages from the page index
  3. Ability to disable the posting of a discussion thread for an individual page
  4. Ability to filter xf’s search to wiki pages
  5. A little more control of the navigation sidebar. It becomes unusable when there are a lot of pages. Either the ability to display/hide parent/sibling/child links, or something fancier like an accordion menu
 
Last edited:
I couldn´t find another thtead, where this thread would fit in better. Jaxel, I hope it´s okay to post it here, else please feel free to get this post moved somewhere else.

International customers: I would like to ask for your help.

I am trying to built a global (and therefor: a multilingual) forum - and yes, I´m aware that this is never been done before and some consider it impossible to do. May be they are right, but until now I haven´t found anything, that couldn´t be handled the one or other way. Indeed, the project is more a proof-of-concept to see, wether it´s possible or not - or at least, how close I can get.

As I assume XenCarta is running on at least 100s of websites, there have to be some translations out there.

If you are one of those who did a translation - partial, only frontend or complete - I would like to ask you, if there could be circumstances you could share your translation with me. Of course, that includes that I am willing to pay a fee.

Translations searched for are:
  • Italian
  • Portogese
  • German
  • Spanish
  • French
  • Russian
  • Ukrainish
  • Polish
  • Dutch
  • Swedish
  • Norwegian
  • Finnish
  • Turkish
  • Serbian
  • Romanian
  • Arabic
If you are running a XenCarta in one of the languages, you know someone or a website that does, I would really appreciate each and every hint. Wether here in this thread or in a private conversation.

Thanks!
 
Feature Request:

It would be nice if we could get the "Parent" field in the Edit view to be in hierarchy order like the order of the Page List does it. As a use case example, I have a character page that is under two separate categories, and while it looks okay in the individual Categories' views ("Characters > Talim", and "Soul Calibur 6 > Talim"). It makes it difficult to discern between which page is which when seeing both just come up as "Talim" in the Parent drop-down field.

Alternatively, if there could be a separate field for "Hierarchy Title" and have those show up in the Parent drop-down selector then that would also meet my requirements.
 
Last edited:
This addon DOES NOT work with XF2.1 at the moment. An update is already completed and will be released on the day XF2.1 comes out.

The update includes changes to the Reaction system for likes... bookmarks, sharing and a bunch of other bug fixes.

Hello! I just purchased the add-on
I have a little question: How can I add a table like this?

View attachment 188581

Thanks a lot :)
I use the template system.
 
"image=" place the cursor behind, then click on the icon between the linkchain and the smiley to drop in a picture
 
My Wiki is working now, content adds up step by step :)
Now I need to include the results of a MySQLi statement into a HTML page. How should this look like ?

My PHP testpage looks like this
--------------------------------------------------------
<?php
$servername =
$username =
$password =
$dbname =

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);

// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// echo "Connected successfully";

// $sql = "select user_id, username FROM xf_user order by username asc";
$sql = "SELECT xf_user.user_id, xf_user.username, xf_user_field_value.field_value, xf_user_field_value.field_id
FROM xf_user_field_value
INNER JOIN xf_user ON xf_user.user_id=xf_user_field_value.user_id
where xf_user_field_value.field_id='brand'
order by field_value ASC";

$result = $conn->query($sql);

if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
echo $row[field_value]. " - " . $row["username"]. "<br>" ;

}
} else {
echo "0 results";
}
$conn->close();
?>
--------------------------------------------------------
 

If you share your HTML for the template it'd be easier to tell you. Most likely it's either going to require an edit on the template or how you tell it what image to use.

so for example. In one of my templates I have code like the following:
Code:
<a href="/wiki/{{{slug}}}"><img src="{{{image}}}"></a>
In that above case I'd call the template as follows:
Code:
[template=ImageLink] slug=BungeeCord | image=/attachments/12345/[/template]

That of course assuming the attachments ID is 12345. I actually modified my Attachments template to show the ID when attaching to make it easier to tell the ID.
 
Works well! But there is a small problem:
188861

My template:
Code:
<div class="carta-icon-list carta-template-right">
    <div class="carta-icon-row">
        <div class="block-row"><a href="/wiki/{{{slug}}}/"><img src="{{{image}}}"/></a></div>
        <div class="block-footer"><a href="/wiki/{{{slug}}}/"><b>{{{name}}}</b></a></div>
    </div>
</div>

Thanks a lot for help :)
 
Works well! But there is a small problem:
View attachment 188861

My template:
Code:
<div class="carta-icon-list carta-template-right">
    <div class="carta-icon-row">
        <div class="block-row"><a href="/wiki/{{{slug}}}/"><img src="{{{image}}}"/></a></div>
        <div class="block-footer"><a href="/wiki/{{{slug}}}/"><b>{{{name}}}</b></a></div>
    </div>
</div>

Thanks a lot for help :)

Check your BBCode of the Editor to see if there's some corruption going on from when you inserted the full attachment earlier. Sometimes ghost URL or IMG calls can corrupt some.
 
Top Bottom