Forum Replies Created

Viewing 15 replies - 1 through 15 (of 24 total)
  • Thread Starter 3551

    (@3551-1)

    I can solve it using this shortcode [placementstrategies]
    instead of [cluster].

    The information is not in the plugin within WordPress, you have to go to the plugin’s website.

    https://leafext.de/en/cluster/placementstrategies/

    Thread Starter 3551

    (@3551-1)

    Wow thanks, i will send a message from the page.

    Thread Starter 3551

    (@3551-1)

    I’m using: TEXT, TEXTAREA, WYSIWYG.
    I’m using in a web thats it’s already online, the pre release version is a final version or a beta?

    • This reply was modified 3 years, 4 months ago by 3551.
    Thread Starter 3551

    (@3551-1)

    Thanks, yes it’s a point to make it better. It’s a little messy now.

    Thread Starter 3551

    (@3551-1)

    Thanks

    Thread Starter 3551

    (@3551-1)

    Ok,. thanks for the response. I know i don’t find the best solution, but I need it to make I work.

    With more time I check what happened.

    Thanks again.

    Thread Starter 3551

    (@3551-1)

    This is the URL

    Your plugin is very good but it did not work. And the only solution I found was to install a specific plugin to place the Google Maps API key.

    API KEY for Google Maps

    This are the instructios in the XML file you exported:
    I think it’s gonna works fine.
    To import this information into a WordPress site follow these steps: –>
    1. Log in to that site as an administrator.
    2. Go to Tools: Import in the WordPress admin panel.
    3. Install the “WordPress” importer from the list.
    4. Activate & Run Importer.
    5. Upload this file using the form provided on that page.
    6. You will first be asked to map the authors in this export file to users
    on the site. For each author, you may choose to map to an
    existing user on the site or to create a new user.
    7. WordPress will then import each of the posts, pages, comments, categories, etc.
    contained in this file into your site.

    Thread Starter 3551

    (@3551-1)

    Yes, i tried that. But nothing.

    I got the same problem. I look for solutions but no one works.
    Someone knows how to solve this problem.

    Thanks

    Thread Starter 3551

    (@3551-1)

    Give me this error:

    [Mar 29 2015 15:54:50] ERROR_HANDLER
    Number:  2
    Message: mysql_pconnect(): User 'u613701010_ezele' has exceeded the 'max_user_connections' resource (current value: 3)
    File:    /home/u613701010/public_html/wp-content/plugins/all-in-one-wp-migration/lib/vendor/mysqldump-factory/mysqldump-factory/lib/MysqlDumpSQL.php
    Line:    606
    --------------------------------------------
    [Mar 29 2015 15:54:50] ERROR_HANDLER
    Number:  2
    Message: mysql_pconnect(): User 'u613701010_ezele' has exceeded the 'max_user_connections' resource (current value: 3)
    File:    /home/u613701010/public_html/wp-content/plugins/all-in-one-wp-migration/lib/vendor/mysqldump-factory/mysqldump-factory/lib/MysqlDumpSQL.php
    Line:    606
    --------------------------------------------
    [Mar 29 2015 15:54:50] ERROR_HANDLER
    Number:  2
    Message: mysql_error() expects parameter 1 to be resource, boolean given
    File:    /home/u613701010/public_html/wp-content/plugins/all-in-one-wp-migration/lib/vendor/mysqldump-factory/mysqldump-factory/lib/MysqlDumpSQL.php
    Line:    586
    --------------------------------------------
    [Mar 29 2015 15:54:50] ERROR Exception while exporting: Unable to connect to MySQL database server:
    [Mar 31 2015 20:29:22] ERROR_HANDLER
    Number:  2
    Message: mysql_pconnect(): User 'u613701010_ezele' has exceeded the 'max_user_connections' resource (current value: 3)
    File:    /home/u613701010/public_html/wp-content/plugins/all-in-one-wp-migration/lib/vendor/mysqldump-factory/mysqldump-factory/lib/MysqlDumpSQL.php
    Line:    606
    --------------------------------------------
    [Mar 31 2015 20:29:22] ERROR_HANDLER
    Number:  2
    Message: mysql_pconnect(): User 'u613701010_ezele' has exceeded the 'max_user_connections' resource (current value: 3)
    File:    /home/u613701010/public_html/wp-content/plugins/all-in-one-wp-migration/lib/vendor/mysqldump-factory/mysqldump-factory/lib/MysqlDumpSQL.php
    Line:    606
    --------------------------------------------
    [Mar 31 2015 20:29:22] ERROR_HANDLER
    Number:  2
    Message: mysql_error() expects parameter 1 to be resource, boolean given
    File:    /home/u613701010/public_html/wp-content/plugins/all-in-one-wp-migration/lib/vendor/mysqldump-factory/mysqldump-factory/lib/MysqlDumpSQL.php
    Line:    586
    --------------------------------------------
    [Mar 31 2015 20:29:22] ERROR Exception while exporting: Unable to connect to MySQL database server:
    Thread Starter 3551

    (@3551-1)

    There′s no error.log in the folder,. just two files index.php and status.php.

    I think it’s because I do not get any kind of error.
    The arrows just keep spinning indefinitely.
    I never leaves the 0%.

    Thanks

    Thread Starter 3551

    (@3551-1)

    I mean that stopd there, not ‘dare’.

    Sorry for my english

    3551

    (@3551-1)

    The same as above, but better lecture.

    <?php
    $query = new WP_Query(array(
    'post_type' => 'post',
    'posts_per_page' => 13,
    'paged' => 1
    ) );
    
    // Query the pages that have a static position
    $pages = get_posts( array(
    'meta_key' => 'tile-position',
    'post_type' => 'page',
    'posts_per_page' => 20
    ) );
    
    // Loop over the pages, check their position and put them there in the posts array
    foreach ( $pages as $page ) {
    $position = get_post_meta( $page->ID, 'tile-position', true );
    
    if ( empty ( $position ) || ! is_numeric ( $position ) )
    continue;
    
    // Magic happens here:
    array_splice ( $query->posts, $position - 1, 0, array ( $page ) );
    }
    
    // WP Tiles arguments
    $args = array(
    'grids' => News
    );
    // Display the tiles
    the_wp_tiles( $query, $args );
    ?>

    3551

    (@3551-1)

    Achieve run the above code,
    but I can not take me the $args
    How can i put the args?
    Placed them in this way:
    // WP Tiles arguments $args = array( 'grids' => News );

    Btu dosen′t work.
    The full code is this:

    <?php //if ( function_exists ( 'the_wp_tiles' ) ) the_wp_tiles( ); 										$query = new WP_Query(array(											'post_type' => 'post',											'posts_per_page' => 13,											'paged' => 1										) );
    										// Query the pages that have a static position										$pages = get_posts( array(											'meta_key' => 'tile-position',											'post_type' => 'page',											'posts_per_page' => 20
    										) );
    										// Loop over the pages, check their position and put them there in the posts array
    										foreach ( $pages as $page ) {											$position = get_post_meta( $page->ID, 'tile-position', true );											if ( empty ( $position ) || ! is_numeric ( $position ) )												continue;
    											// Magic happens here:											array_splice ( $query->posts, $position - 1, 0, array ( $page ) );										}
    										// WP Tiles arguments										$args = array(											'grids' => News										);
    										// Display the tiles										the_wp_tiles( $query, $args );
    							?>

    And the demo: https://infomedia24.esy.es/
    “About 1” and “Blog 4” are pages, the others are posts.

Viewing 15 replies - 1 through 15 (of 24 total)