How can we help?

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

Forum Replies Created

Viewing 10 posts - 1,641 through 1,650 (of 1,677 total)
  • Author
    Posts
  • in reply to: Need widget logic #1697
    admin
    Keymaster

    Hi spielo,

    Sorry but I don’t understand what you mean, are you referring to a plugin?
    Also I don’t understand the ‘in_review(‘xxxxx’)’

    in reply to: Review Problems in Sorting ? #1685
    admin
    Keymaster

    Hi coni,

    Sorry but I don’t understand your message, what functionality do you want to achieve?

    in reply to: Review Problems in Sorting ? #1683
    admin
    Keymaster

    Hi coni,

    As I can understand you want the sorting options for the shortcode [table_list]

    From the documentation : https://pokatheme.com/documentation-poka-theme-v2/

    The available sort options for this shortocde are:

    sort : The available options are date,rating,title

    in reply to: [single_affiliate title=”” size=””] Not working #1672
    admin
    Keymaster

    Hi,

    I can’t be sure what’s wrong, all I can see is that it breaks before printing the main area.
    If you can send us an administrator wp account to check it.
    (You can make your reply private)

    in reply to: [single_affiliate title=”” size=””] Not working #1664
    admin
    Keymaster

    Hi,

    From the documentation about the [single_affiliate title=”” size=””]

    title : The title of the Review post you want to display.
    size : The available options are small,big. The small size usually fits better in a widget area and inside a column and the big size fits better in whole content width.

    Are you sure you are using the shortcode correctly?

    2. The affiliates shortcodes page is just for reference but what do you mean it is not displaying properly? Can you send me an example?
    (I believe this is the page that you are mentioning : http://pokav2.pokatheme.com/demo1/affiliates-shortcodes/)

    Also what version of Poka v2 are you using?

    admin
    Keymaster

    Hi! You just need to UNZIP the zip you downloaded first. Check our documentation as well: https://pokatheme.com/documentation-poka-theme-v2/

    in reply to: Review url #1620
    admin
    Keymaster

    Hi,

    You can change it by adding the following snippet to your functions.php in your child theme:

    `add_filter( ‘register_post_type_args’, ‘change_slug_affiliates_cpt’, 10, 2 );
    function change_slug_affiliates_cpt( $args, $post_type ) {

    if ( $post_type == ‘affiliates’) {
    $args[‘rewrite’][‘slug’] = ‘inceleme’;
    }

    return $args;
    }`

    in reply to: Custom Fields #1602
    admin
    Keymaster

    Hi,
    Inside functions.php in your child theme.

    in reply to: Custom Fields #1596
    admin
    Keymaster

    Hi,

    I believe that the problem is misconfiguration in metaboxes array.
    Just to be sure you can try to enable ACF options panel with:

    `add_filter(‘acf/settings/show_admin’, ‘__return_true’, 100);`

    and try creating your fields with the Visual tool of ACF, if you still experience the same problems then indeed is something with the server configuration, if everything is saved correctly then you are doing something wrong in acf-metaboxes.php

    in reply to: Contact Plugin Issue #1593
    admin
    Keymaster

    As I can see in your child theme in the styles you have the following style:

    `label {
    display: none;
    margin-bottom: .5rem;
    }`

    I’m not sure what you wanted to do but this hides all the labels in your site.
    If you remove the display:none you’ll see the form inputs again.

Viewing 10 posts - 1,641 through 1,650 (of 1,677 total)