Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)
  • Thread Starter Shane.C

    (@shanec-1)

    Fixed. The RTL style wasn’t getting correctly loaded. I’ve updated the functions.php to what’s below and hey presto! It works.

    <?php
    /**
     * Load the stylesheet from the parent theme with theme version added automatically.
     * from: ulrich.pogson.ch/how-to-load-the-parent-styles-in-child-themes
     */
    add_action( 'wp_enqueue_scripts', 'theme_name_parent_styles' );
    function theme_name_parent_styles() {
    	$parent = get_template();
    	$parent = wp_get_theme( $parent );
    	wp_enqueue_style( 'theme-name-parent-style', get_template_directory_uri() . '/style.css', array(), $parent['Version'], 'all' );
    	if ( is_rtl() ) {
    		wp_enqueue_style( 'theme-name-parent-style-rtl', get_template_directory_uri() . '/rtl.css', array(), $parent['Version'], 'all' );
    	}
    }
    Thread Starter Shane.C

    (@shanec-1)

    Thread Starter Shane.C

    (@shanec-1)

    No Agent Joe is not an administrator but has been given wpas_ custom permissions assigned by default to the support_agent role.

    How are you supposed to transfer a ticket – via the dropdown list or another way?

    Thanks.

    Forum: Plugins
    In reply to: [Arconix FAQ] Sub-groups
    Thread Starter Shane.C

    (@shanec-1)

    Another workaround (without needing CSS or making any changes to the functions.php code) is:

    1 Create pseudo-child FAQ groups (all at the same (top) level) e.g.
    .. it-support
    .. it-support-hardware
    .. it-support-software
    .. project-management
    .. project-management-requesting-assistance
    .. project-management-support-available

    2 Create a main FAQ page and a page for each sub-group e.g.
    .. Main FAQ Page
    .. IT Support FAQ Page
    .. Project Management FAQ Page

    3 On the main FAQ page have the following:
    .. [faq group=”it-support”]
    .. [faq group=”project-management”]

    4 On the IT Support FAQ page have the following:
    .. [faq group=”it-support-hardware”]
    .. [faq group=”it-support-software”]

    5 On the Project Management FAQ Page have the following:
    .. [faq group=”project-management-requesting-assistance”]
    .. [faq group=”project-management-support-available”]

    Hi,

    I’m looking for the same thing…to be able to display the UI in Arabic (and other RTL languages) using the Polylang strings translation (or some other method). I’ve already got multiple pages with the correct language support page being displayed for the selected language but the UI remains in English and I can’t see where I can add the other language translations.

    Thanks.

    I’m the ‘3rd user’ Maeve referred to above. I have a little more light the shed on this issue…

    I my situation the title of the most-recently-updated article displays below the search box only if certain WordPress Permalinks settings are selected e.g. if using the Default setting the Title is NOT displayed whereas when using the Day and name’ setting it IS displayed.

    Perhaps that might bring us close to finally resolving this.

    Problem with clicking on the ‘Knowledgebase’ link in the breadcrumb

    Situation
    Out-of-the box install of the plugin
    WordPress Permalinks set to Default i.e. (http://&#8230;?p=123)

    Clicking on the ‘Knowledgebase’ link in the breadcrumb tries to go to
    http://…/knowledgebase but can’t find it (the page can be found via …/?page_id=NNN

    If I switch WordPress Permalinks to Post name i.e. (http://…/sample-post/) the Breadcrumb link works fine (but I don’t want that Permalinks setting.

    Any suggestions much appreciated. Thanks.

    Forum: Plugins
    In reply to: [Arconix FAQ] Sub-groups
    Thread Starter Shane.C

    (@shanec-1)

    Hi John,

    That’s the ticket. I can now create nested groups, thanks! The display of the FAQs on the site isn’t exactly what I was hoping for (as they aren’t visually nested on the FAQ page) – the groups and sub-groups are all displayed as if they were all at the same level e.g.

    Hardware
    IT Support
    Project Management
    Requesting assistance
    Software
    Support available

    If there was any way of displaying the above as how it’s portrayed below that would be fantastic.

    IT Support
    + Hardware
    + Software

    Project Management
    + Requesting assistance
    + Support available

    (as an example clicking on ‘Support available’ would not show one FAQ rather it would show a list of all the FAQs (not yet expanded) in the ‘Support available’ sub-category of Project Management – each of which could then be individually expanded.

    But even if this is not possible thank you anyway for your prompt responses and suggestions for the functions.php.

    Thanks,
    Shane

    Forum: Plugins
    In reply to: [Arconix FAQ] Sub-groups
    Thread Starter Shane.C

    (@shanec-1)

    Hi John,

    I added the code into the middle of
    …/wp-content/themes/twentyten/functions.php
    and the good news is that the site still works fine! (I know I should be using a child theme but this is a disposable test site so I don’t mind having to remove and recreate it if everything goes to pot).

    I can’t see any change in the plugin’s UI to allow me to create sub-groups. How might I create them?

    Thanks a lot,
    Shane

    Thread Starter Shane.C

    (@shanec-1)

    Can anyone tell me how to remove the title of the latest article from above the list of categories? Please? Thanks in advance!

    Thread Starter Shane.C

    (@shanec-1)

    Hi Tobias,

    Thanks for your honesty! My last question on this topic before I go in search of another solution is…

    Can the underlying table – that TablePress loads and does it’s client-side processing on – actually be a query i.e. the ‘table’ that is loaded by TablePress is a generated-on-the-fly query based on prior selections made by the user?

    If not, (and I know this a bit like going into a Ford dealership and asking them to recommend a BMW!) could you recommend a particular PHP/SQL plugin that can handle ‘big-data’ and facilitate querying it.

    Ok, and very very last question, what is the best tool for database management work – creating tables, queries, indices etc. – on WordPress.

    Right, that’s it.

    Thanks,
    Shane

    Thread Starter Shane.C

    (@shanec-1)

    Hi Tobias,

    I tried to install the extension but got the following messages:

    Installing Plugin from uploaded file: tablepress-datatables-column-filter-widgets.zip

    Unpacking the package…
    Installing the plugin…
    The package could not be installed. No valid plugins were found.
    Plugin install failed.
    Return to Plugins page

    Any ideas? (TablePress is installed)

    Thanks,
    Shane

    Thread Starter Shane.C

    (@shanec-1)

    Hi Tobias,

    Arabic in TablePress seems to be fine (right-aligned and searching/filtering). I only needed to add the following into the Custom CSS Plugin options:

    .tablepress-id-X tbody td,
    .tablepress-id-X thead th {
    text-align: right;
    }

    I also had an English column in the same table which I left-aligned with:

    .tablepress-id-X .column-Y {
    text-align: left;
    }

    Thanks a lot,
    Shane

Viewing 13 replies - 1 through 13 (of 13 total)