capsx
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Print] custom post types1. copy print-posts.php to the template directory
2. change:global $text_direction;
to
global $text_direction, $wp_query; $args = array_merge( $wp_query->query_vars, array( 'post_type' => 'any' ) ); query_posts( $args );
??
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Register Post Type 'has_archive'Josh: sorry, didn’t answer to u, but it seems that the problem is already solved ??
./embedded/includes/fields/file.php
$button_text = sprintf( __( ‘Select %s’, ‘wpcf’ ), $field[‘type’] );
Forum: Plugins
In reply to: [Theme My Login] Theme My Login 6.3.4 translationJeff Farthing – when will be the next release ?
please asap …
thxForum: Plugins
In reply to: [bbPress - Mark as Read] Unread topic with new repliesthis is “must have” …
and thx for the pligin ??the same issue here
only upgraded from 4.1.0 to 4.2.0
Can’t translate HOME … :Sfix.php
https://paste.php.lv/e89e7b6bf2767cb3b210719e8236456b/nonum
<?php ////////////////////////////////////////////////////////////////////// ini_set('display_errors', 1); ini_set('error_reporting', 'E_ALL & ~E_NOTICE'); header('Content-Type: text/html; charset=utf-8'); ////////////////////////////////////////////////////////////////////// include_once('wp-config.php'); include_once('wp-load.php'); include_once('wp-includes/wp-db.php'); ////////////////////////////////////////////////////////////////////// global $wpdb; $q = "SELECT post_id, meta_value FROM ".$wpdb->postmeta." WHERE meta_key='_wp_attachment_metadata'"; $myrows = $wpdb->get_results($q); $i=0; foreach($myrows as $myrow) { $id = null; $us = null; $_wp_attached_file = null; $_wp_attached_file_exists = null; $us = unserialize($myrow->meta_value); $post_id = $myrow->post_id; $_wp_attached_file = $us['file'] ; $q = "SELECT <code>meta_id</code> FROM <code>".$wpdb->postmeta."</code> WHERE <code>meta_key</code> = '_wp_attached_file' AND <code>post_id</code> = '".$post_id."' LIMIT 1"; $_wp_attached_file_exists = $wpdb->get_var($q); if($_wp_attached_file_exists=='') { $i++; echo '<p> '.$i.' - _wp_attached_file not found - '.$id.'</p>'; $q = "INSERT INTO <code>".$wpdb->postmeta."</code> SET <code>post_id</code> = '".$post_id."', meta_key='_wp_attached_file', meta_value='".$_wp_attached_file."'"; $wpdb->query($q); } } //////////////////////////////////////////////////////////////////////
yes
i did like that
but its a hack – after plugin update i must do it again …Forum: Requests and Feedback
In reply to: Malformed URL bypassing moderation?“Unfortunately, there is no actual verification performed on the incoming trackback, and indeed they can even be faked.”
sou – as i understand – trackbacks can be faked and trackbags always are automatically confirmed ?
Forum: Requests and Feedback
In reply to: Malformed URL bypassing moderation?i have the same situation:
VIRGIL
https://%/zzvwuok8
spam commentand spam comment is automatically confirmed, even i had option –
Before a comment appears “Comment author must have a previously approved comment” – enabledalso E-mail is empty – theoretically user can’t post comment with an empty e-mail address
also i found that “comment_type” is trackback …
—
Other comment settings:
Comment author must fill out name and e-mail.
Before a comment appears:
Comment author must have a previously approved comment.
I’m using:
WordPress 3.0 stable