3551
Forum Replies Created
-
Forum: Plugins
In reply to: [Extensions for Leaflet Map] Wrong clusterI 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.
Wow thanks, i will send a message from the page.
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.
Thanks, yes it’s a point to make it better. It’s a little messy now.
Forum: Plugins
In reply to: [Falang multilanguage for WordPress] Second language not show in adminThanks
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.
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.
Forum: Plugins
In reply to: [WP Store Locator] Export Store Locator DataThis 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.Yes, i tried that. But nothing.
Forum: Plugins
In reply to: [Youtube Channel Gallery] Message from server: Gone. Check in YouTube…I got the same problem. I look for solutions but no one works.
Someone knows how to solve this problem.Thanks
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Don′t export fileGive 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:
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Don′t export fileThere′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
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Don′t export fileI mean that stopd there, not ‘dare’.
Sorry for my english
Forum: Plugins
In reply to: [WP Tiles] Fix some tiles in specific positionThe 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 ); ?>
Forum: Plugins
In reply to: [WP Tiles] Fix some tiles in specific positionAchieve 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.