tpecop
Forum Replies Created
-
Only PayPal Standart working. PayPal Express doesn’t. cURL SSL Version says: Make sure you are running OpenSSL/1.0.1 or higher, NSS/3.15.1 or higher, or the latest version of other cryptographic libraries.
But i have OpenSSL 1.0.1 on server
root@server35 [~]# openssl version
OpenSSL 1.0.1e-fips 11 Feb 2013just select default role in general wp settings
In wordpress genereal settings select your PMPro default role. If you cant see new roles install PMPro roles
Same here, updated this plugin and got tons of errors.
Forum: Plugins
In reply to: [Random Post Link] Limit to a categoryfunction rpl_change_ptype( $args ) { $args['category_name'] = 'your_category_name_goes_here'; return $args; } add_filter( 'random_post_args', 'rpl_change_ptype' );I took it from previus topic for custom post types, but its working as any other filter (category, tag, etc)
Forum: Plugins
In reply to: [Simple Content Templates for Blog Posts & Pages] New version doesn't workGreat update, i lost my template and cant create new. Nice.
<?php
$terms = apply_filters( ‘taxonomy-images-get-terms’, null, array(
‘taxonomy’ => ‘model’,
) );
if ( ! empty( $terms ) ) {
print ‘ ‘;
foreach( (array) $terms as $term ) {
print ‘ taxonomy ) ) . ‘”>’ . wp_get_attachment_image( $term->image_id, ‘detail’ ) . ‘‘ ;
} print ‘ ‘;
}
?>
</div>this actually will show only images. also this code is in tutorial