How can we help?

If you are looking for support for our PokaTheme, this is the place!

Forum Replies Created

Viewing 10 posts - 1,621 through 1,630 (of 1,641 total)
  • Author
    Posts
  • in reply to: Get Reviews from different database #1526
    admin
    Keymaster

    Hi spielo,

    This would require more specifications about what you want to achieve and custom work, if you would like to discuss it further you can send us an email at support@pokatheme.com

    in reply to: Video Format Post Featured Image #1502
    admin
    Keymaster

    Hi,

    If you want to hide the featured image in the single template only for the video format you can add this to your child theme:

    `.single-format-video .img-wrapper { display:none; }`

    in reply to: Get Reviews from different database #1501
    admin
    Keymaster

    Hi spielo,

    You have two separate WP installs and you have installed Poka in one of the installs but you want to display reviews to other WP?
    Is there a specific reason you have two separate WP installs for this? Because the first I could think of is to combine these two installs to a single WP installation.
    If this can’t happen I believe this can be made by creating a different connection to the Poka DB and create a custom shortcode with these data so you can use it to your news block but this is will require to be quite comfortable with PHP.

    in reply to: Filter #1500
    admin
    Keymaster

    First you have to override the entire function “tablelist” from the file sc-table-list.php to your child theme functions.php
    After that find the following:
    ` } elseif($sort == “date”) {
    $query_string[‘orderby’] = “date”;
    $query_string[‘order’] = “ASC”;
    }`

    and change it to:
    ` } elseif($sort == “date”) {
    $query_string[‘orderby’] = “date”;
    $query_string[‘order’] = “ASC”;
    } elseif($sort == “minodds”) {
    $query_string[‘meta_key’] = “your_custom_field_name”;
    $query_string[‘orderby’] = “meta_value_num”;
    $query_string[‘order’] = “DESC”;
    }`

    Don’t forget to change “your_custom_field_name” with your custom field name and after that you can use it as follow:
    `[table_list num=”10″ sort=”minodds” big_table=”true”]`

    in reply to: Visual Issues #1499
    admin
    Keymaster

    Hi Christopher and sorry for the delayed response,

    If you want to hide the sidebar(widgets) from the mobile view you can add the following to your child theme:

    `@media (max-width: 767px) {
    #sidebar { display:none; }
    }`

    Depending of which header style you have selected in Visual Options a background image is shown in header.
    If you want to disable this background image you can add this style in your child theme:

    `header { background-image:none; }`

    in reply to: Filter #1476
    admin
    Keymaster

    About the shortcode, tell me which shortcode you want to change the order and what custom ordering you want to achieve and I’ll help you through!

    We are also thinking creating a new table like shortcode with filters like the screenshot, It’s already in our list! 🙂

    in reply to: Filter #1467
    admin
    Keymaster

    Hi Christopher,

    You want to change the display order in a shortcode by some custom fields? For example the ordering in the table shortcode?

    in reply to: Need to change one word #1464
    admin
    Keymaster

    If you don’t want to use a plugin you can try changing the translations with this guide: https://pokatheme.com/topic/how-to-createedit-language-packs/

    • This reply was modified 5 years, 11 months ago by admin.
    in reply to: Visual Settings problem #1463
    admin
    Keymaster

    Hi Christopher!

    In which translation file there was the problem?

    • This reply was modified 5 years, 11 months ago by admin.
    in reply to: Latest News #1462
    admin
    Keymaster

    Great! We’ll try to make the Documentation better!

Viewing 10 posts - 1,621 through 1,630 (of 1,641 total)