matuh
Forum Replies Created
-
Forum: Plugins
In reply to: [Frontier Post] Feature request: multiple formsOkay, it seems I misunderstood how this is working. So now Frontier post will take the template file automatically from the themes folder. But, how can I add another form? How can this be done with templates?
Forum: Plugins
In reply to: [Frontier Post] Feature request: multiple formsCould I please get a bit more information about using templates?
I have copied frontier_form.php and frontier_list.php to ./wp.content/themes/[your active theme]/plugins/frontier-post/, but how can I use these in a new page?And another question: how can I change the following code so there would be only those categories in the list that I choose to?
<?php foreach ( $catlist as $category1) : ?> <option value="<?php echo $category1['cat_ID']; ?>" <?php if ( $cats_selected && in_array( $category1['cat_ID'], $cats_selected ) ) { echo 'selected="selected"'; }?>><?php echo $category1['cat_name']; ?></option> <?php endforeach; ?>
Forum: Plugins
In reply to: [Frontier Post] Edit "Please log in" pageI changed the text by translating, but where does it take the —- signs before and after the text? They were not in the translation file.
But is there any way to add also a page with some text and login form?Forum: Plugins
In reply to: [Frontier Post] Is there any support for this plugin?Thanks finnj! You have done a great job. It is a really good plugin and you could consider making a PRO version of it also.
Hope you had an awesome vacation ??
Forum: Plugins
In reply to: [Google Forms] Text boxes are not full widthSorry for this post, I don’t know if I’m blind or what, but where can I enable custom css and add the correct width?
Forum: Plugins
In reply to: [Frontier Post] How to add excerpt readmore link in frontier postThis depends on your template.
Add <?php the_excerpt(); ?> where you want it to show.
https://codex.www.ads-software.com/Function_Reference/the_excerpt
Forum: Plugins
In reply to: [JC Submenu] Is it possible to exclude some categories?Thanks! ??
Forum: Networking WordPress
In reply to: Restoring multisite from backupI found a solution:
The easiest way to restore Super Admin privileges is to add a bit of code to your theme’s functions.php file to add yourself back:include(ABSPATH . ‘wp-admin/includes/ms.php’);
$user = get_userdatabylogin(‘YOUR_USERNAME’);
grant_super_admin($user->ID);Once your Super Admin privileges have been restored you can remove this code from your theme.
Thanks for the tip Paul!
Forum: Networking WordPress
In reply to: Restoring multisite from backupI got this:
You do not have sufficient permissions to access this page.
Forum: Networking WordPress
In reply to: Multisite showing new site w/ no template and no dashboarOr does anybody else have a solution?
Forum: Networking WordPress
In reply to: Multisite showing new site w/ no template and no dashboarDid you find a solution?
I have the exact same problem.Forum: Fixing WordPress
In reply to: content available after answering questionsStill haven’t found a way how to do this with WordPress. Maybe there is another platform that has plugins to do this?
Forum: Themes and Templates
In reply to: iBusiness theme has no menuI would also like to get a solution to this problem. Any ideas?
Forum: Fixing WordPress
In reply to: content available after answering questionsThank you, govpatel. But this does not do what I need and I don’t see how to modify it.
I describe my situation in detail:
There is a members area. Members have some information available for them. They have to study it and when they think they are redy, they answer some questions and after submitting, some more information will be available for them. It does not matter what they will answer to the questions. There are no right or wrong answers.
And again, they study the new information, answer to some questions and get the next information. And also the previous information will still be available for them.Is there something that would help to make this kind of members area?
Forum: Fixing WordPress
In reply to: content available after answering questionsAny ideas?