Erriko
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Set registration to a blog of my networkI tried it but it doesn’t work with the user role. I changed ‘subscriber’ with ‘differentrole’ but it make the user not allowed to login after activation.
The value ‘differentrole’ comes from PhpMyAdmin, I retrieved it from the table of users and it is showed in place of ‘administrator’, ‘subscriber’ etc in the users already associated with this role…Any ideas?
Forum: Networking WordPress
In reply to: Set registration to a blog of my networkActually I have user registration active only for the main site. Other blogs have only 1 user (the corresponding admin).
My issue here is that a new user is registered to the network and not to all sites, nor just one. I have to use “add user” to make an user be part of a site…Forum: Networking WordPress
In reply to: Set registration to a blog of my networkUser Role Editor: https://www.shinephp.com/user-role-editor-wordpress-plugin/
Forum: Networking WordPress
In reply to: Set registration to a blog of my networkThank you for you help. I’ve tried it, but it works at the 50%.
I use role editor to set a non conventional default user role.
I dugg into phpMyAdmin to see how it was stored, and I saw it is stored as the name of this role without capital letters.
It is stored by brackets, in the same way as administrator or subscriber is.I set this value in default_user_role but when I try to register the new user is added to the main site but it can’t log into the dashboard. WordPress says you haven’t permissions.
I’m sure it is caused by the user role, but I can’t figure what value is suitable to make it work ??
Forum: Networking WordPress
In reply to: Feeds don't work correctly on subdomainsAnother trick I have to use is to add at least a type, even a space or an underscore, ’cause if the new post has only an image, the content won’t be displayed in the feed.
Forum: Networking WordPress
In reply to: Feeds don't work correctly on subdomainsthere was a function in functions.php that used to corrupt the xml. Solved. ??
Forum: Plugins
In reply to: [DM Albums] [Plugin: DM Albums] Album Manager Empty When Editing PostYes, moved to another plugin. What a pity…
Nobody answered you ’cause it is not a problem related to the plugin itself.
When you call for the block of wpp you are printing an unordered list. Just stylize that with CSS. You can modify wpp.css (that is in the plugin folder) or tweaking your own style.css.
I would do as follow:– put this php code wherever you’d like to show your popular posts (change accordingly to your needs)
if (function_exists('wpp_get_mostpopular')) { wpp_get_mostpopular("range=all&thumbnail_selection=wppgenerated&pages=0&stats_comments=0&order_by=views&thumbnail_width=54&thumbnail_height=54&title_length=60&limit=8"); }
– put this php code in your functions.php, it will remove wpp.css from the header of your theme.
add_action('wp_head', 'remove_widget_action', 1); function remove_widget_action() { global $wp_widget_factory; remove_action( 'wp_head', array($wp_widget_factory->widgets['WordpressPopularPosts'], 'wpp_print_stylesheet') ); }
– in your style.css decide how to show your unordered list.
ul.recent_posts{ margin:0; padding:0; display:block; width:100%; } ul.recent_posts li{ display:block; float:left; margin-left:10px; height:70px; position:relative; list-style:none; } ul.recent_posts li a{ /* style of the hypertext */ } ul.recent_posts li a span.wpp-post-title{ /* style of the titles */ } ul.recent_posts li a img.wpp-thumbnail{ /* style of the thumbnails */ }
Forum: Plugins
In reply to: [DM Albums] [Plugin: DM Albums] Album Manager Empty When Editing PostI have a problem also, but a little bit different.
I can’t upload images. I see the widget and the upload seems ok during the process, but nothing is actually stored in the folder and I can’t see the new album. It works only if I manually upload a folder via ftp…Forum: Networking WordPress
In reply to: Feeds don't work correctly on subdomainsMmmm. I tried to update a post but nothing happens.
Here’s one of the sub sites: https://elmoroart.verticalismi.it/Thank you for your help. I appreciate it very much ??
Forum: Networking WordPress
In reply to: Feeds don't work correctly on subdomainsI thought it was a multisite issue, ’cause it happens only in secondary blogs…
I’ll try the way you suggest.
It is any chance to update the feed without publishing a new post?