How can we help?

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

Forum Replies Created

Viewing 10 posts - 1,651 through 1,660 (of 1,677 total)
  • Author
    Posts
  • in reply to: Contact Plugin Issue #1583
    admin
    Keymaster

    Hi,
    Can you send me a link with the problem to check it? (You can make it private if you want)

    in reply to: Custom Fields #1551
    admin
    Keymaster

    Hi Chris,

    You can try an online parser like http://www.writephponline.com/ and you can run the uniqid();
    The main issues for not saving the data in custom fields are the IDs to be unique and the names to be valid.

    in reply to: Custom Fields #1548
    admin
    Keymaster

    In the name it’s best if you keep it as simple as you can, remove the special characters, for example : Omsättningskrav -> omsattningskrav
    Also change in all three fields from ‘type’ => ‘number’ to ‘type’ => ‘text’
    Lastly the keys are created with uniqid() ? Because it is very important for these fields to be unique.

    in reply to: Poka Theme V2 r2.0.3 Changelog? #1546
    admin
    Keymaster

    Hi daftdog,

    You can find the changelog for Poka v2 here : https://pokatheme.com/topic/changelog-of-poka-theme-v2/

    in reply to: Custom Fields #1545
    admin
    Keymaster

    Hi Christopher,

    What is the procedure you followed in adding these new fields?
    Have you added these new fields inside acf-metaboxes.php ?
    If this is the case then it is very crucial that the IDs of these new fields to be unique.
    For example “field_562a457b33100”.
    You can generate unique strings with PHP function uniqid();

    in reply to: Changelog of PokaTheme v2 #1530
    admin
    Keymaster

    ver. 2.0.3

    16/02/2018

    • In both Affiliate Widgets you can now set a list of specific reviews to be displayed in a custom order. (This new option overrides all the other options when it is used)
    • In shortcodes [table_list] and [affiliates_list] there is a new parameter called “reviews” where you can enter a list of specific reviews to be displayed in a specific order. When this parameter is used overrides all the other parameters.
    • The latest version of AMP plugin (0.6.0) broke AMP page template in Poka Theme, it’s fixed now.
    • Admin bar is now displayed by default. If you want to disable it you can go to your user profile edit page and uncheck “Show Toolbar when viewing site”.
    • In footer widget columns when there was only one column the padding was off the grid, it’s fixed now.
    • Poka redirect function can now be overwritten in child themes for more flexibility.
    • Shortcode [box_text] can now have other shortcodes inside it’s content
    • In custom affiliate widgets the color of the order number was hardcoded, now it changes depending the “blue” color.
    • Added responsive media steps in child theme style.css for reference.
    • In shortcode [latest_news] a new parameter is added for the “Read all news” text. Now it is [latest_news num=”” cat=”” read_more_text=””]
    • Tinymce static assets (js,css) are fixed with correct versioning and the filter “poka_static_version” is now used like the rest of static files of the theme
    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”]`

Viewing 10 posts - 1,651 through 1,660 (of 1,677 total)