julious
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Cimy User Extra Fields] Approve Users First Option?But it is a very important option and should have the plugin.
You want to insert this function?Thanks.
Ok, fine.
Regardless, congratulations for the plugin, this is just a simple detail and I appreciate the support.Here in the forum:
https://www.ads-software.com/support/topic/how-to-set-new-post-visibility-to-private-by-default?replies=14#post-2074408But just leaving everything as private by default.
And I want only the new area that I have done with your plugin to stay with the status private.Tks.
Forum: Plugins
In reply to: Which plugin is better for the following needs:Hi, I managed to solve my problem. I found two excellent plugins to solve my needs:
1) Advanced Access Manager
https://www.ads-software.com/extend/plugins/advanced-access-manager/
for permissions;Types – Custom Fields and Custom Post Types Management
https://www.ads-software.com/extend/plugins/types/
for custom records.Tks!
Forum: Plugins
In reply to: [Plugin: AJAX Login Widget ] Running without wp_headNever tried to run the plugin without the tag wp_head, but from what I saw on my site, this is the js that needs. I don’t know if it will work, because sometimes you also need some processing with php in the plugin. So just waiting for the response from the author.
<script type='text/javascript' src='https://domain/wp/wp-includes/js/tw-sack.js?ver=1.6.1'></script> <script type="text/javascript"> // ajax_login_widget settings var alw_timeout = 0; var alw_redirectOnLogin = ''; // constants var alw_base_uri = 'https://domain/wp'; var alw_success = '1'; var alw_failure = '0'; </script> <script type="text/javascript" src="https://domain/wp/wp-content/plugins/ajax-login-widget/ajax_login_widget.js"></script>
Forum: Plugins
In reply to: [Plugin: Capability Manager] List of users (team)I believe it isn’t possible.
At least, not in WordPress.
With Joomla is easy, but WordPress still lack a good plugin or tag of the system to do that.wp_list_authors really isn’t useful for this (so far). But if anyone knows how to do this, just post here that I also be very grateful, because it is widely used.
Forum: Plugins
In reply to: Plugin of safety for blogs with several authors and editorsRole Scoper: https://agapetry.net/category/plugins/role-scoper/
Download last version: https://agapetry.net/downloads/role-scoper_currentBut don’t is listed (showed) in Plugin Directory of the wordpress:
https://www.ads-software.com/extend/plugins/search.php?q=role+scoperForum: Themes and Templates
In reply to: Problem in dynamic menu highlightingI only wanted to know if is there a way for when it is for instance in category/games highlight the link of the category games, even if the last post to be in other categories.
Because of the way that you suggested me, it will change the place error, when it is in the category default, but it will continue.
Forum: Themes and Templates
In reply to: Problem in dynamic menu highlightingBut the mistake inverts like this just, therefore when it is in https://www.myblog.com/category/default and the last post it is of the category default and game, then it will go highlight you game.
Doesn’t have as quite so to solve? Because me when I work with PHP using querry strings there is the definition of variables:
In games.php: $page = “games”
In home.php: $page = “default”In code:
if ( $page == ‘games’ ) { echo “Games”; }
elseif ( $page == ‘default’ ) { echo “Home”; }
else { echo “Error – No category”; }Forum: Themes and Templates
In reply to: Problem in dynamic menu highlightingIs another thing that I forgot to ask been in fact a mistake of the programming of the code of the theme it is or if it is a bug of the wordpress?
Forum: Themes and Templates
In reply to: Permanlinks /category and pages in category.phpAnd it is bad if you leave the menu of your site with links of the type: https://www.yourblog.com/category/games ?
Because it is the way easiest to solve this pagination problem. But if you don’t want the users to see /category or also for the possibility of some site of searches to take the user to the address https://www.yourblog.com/games and then it doesn’t work the pagination even, then will have of edit part more code assaults.
I try to solve in the easiest way, in the surprise, but if you want something professional, perhaps it is necessary or to edit the file.htaccess that is in your site (occult for the ftp program), but to use a ftp online of your server you will find, or still, to alter the own files php of the wordpress where has the pagination function.
And it can be that has some plugin that makes that, you can try to seek that in Internet, or to ask aid for somebody more specialized in this forum for showing you as doing to appear /category in the pagination, same when somebody accesses to URL without /category. Certainly it will be a simple alteration in some file that has functions (as of pagination) of the wordpress.
Ok?
Forum: Themes and Templates
In reply to: To define same action for 2 or more categoriescorrect. tks!
Forum: Themes and Templates
In reply to: Random specific postsI would also like to know on this resource.
Is it possible to show aleatory posts (random), with base in those what did I select?Forum: Themes and Templates
In reply to: To filter posts exhibitionLinks for research:
https://www.ads-software.com/support/topic/27073?replies=29#post-168009
https://codex.www.ads-software.com/Template_Tags/in_category#Use_OUTSIDE_The_LoopWith every respect to the moderator, it is possible yes to do “alternatives” for the single.php independent of the name, and he knows about that. The subject is that are not happening complete information because you are not reading the documentation.
I will explain to you quickly, because it is something very simple, doesn’t need plugin, in spite of an advanced part to be considered in the wordpress by editing the codes, it is the basic of the programming PHP.
Insert in top of the single.php:
<?php $post = $wp_query->post; if ( in_category('1') ) { include(TEMPLATEPATH . '/single1.php'); } elseif ( in_category('2') ) { include(TEMPLATEPATH . '/single_sub.php'); } else { include(TEMPLATEPATH . '/single.php'); } ?>
( in_category(‘1’) ), where 1 is id category.
In that way, if the user is reading a content that it was published in the category of id 1, then he will open single1.php (a page with the specific layout). If the content is of the category of id 2, then will open the content in single_sub.php (with the layout of its blog for example), and if it is a content published then in any other category will open the content in single.php (the standard layout of its site).
Then, a clue, remove a time to read most of the documentation of the wordpress, navigate among doubts solved at the forum, look for in the web on its doubt or problem and later if you have not really found, then post here.
Another important clue, is to know at least the basic part of programming PHP and database MySQL, because if you want to manipulate the wordpress that uses that programming language completely, you will have very more easiness tends that basic knowledge, and the time that you spent for learning that it will be worthwhile to accomplish modifications that you will do well faster.
Forum: Themes and Templates
In reply to: To filter posts exhibitionThis problem I had not noticed in the templates, because it is a resource that I don’t use. But with certainty should have a form to open the news in the new single.php that you created to maintain the new layout in the reading of the publications.
But I don’t really know about that. It will be necessary somebody more expert in the wordpress to inform you or to try to read in the documentation on that, to search for on topics that speak about that, but it should be simple thing. If I find I place the code here.