firehold
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: init plugin without construct?Thank you for your answer.
As you can see usually i instantiating the class after the class. I outcommented it because the author in the empty constructor guide did this inside of the function.
(i linked the post: instantiating )I thought this is needed cause of the different construction way.
Is it possible to set the setup-function not static or is that needed to replace the constructor.
De declaration of my needed variables in the class i did in the shortcode function until now yause i wasnt able to use wp classes inside of the constructor, because of this i was looking for another solution to setup the class/plugin.
Forum: Fixing WordPress
In reply to: Fatal Error after Plugin creationThank you for your answer. Im really happy that you help me.
I tried to figure out what i’ve missed.
I tried to look in some simple plugins but nearly all actual are working with classes, of course, its the contemporary programming style.
I’m within learning it but im not firm already 😉Unfortunatelly we dont have a big budget for our Project to start so we’ve to do it on our own. Most estimates of cost was at 2000-3000 $ and thats far to much for us.
So im hard working to learn fast and im everytime thankful for every hints 😉
Forum: Fixing WordPress
In reply to: Fatal Error after Plugin creationUnfortunatelly i wasn’t able to find the way to go to prevent this error.
May someone give me a hint what i have to looking for?- This reply was modified 7 years, 2 months ago by firehold.
Forum: Fixing WordPress
In reply to: Fatal Error after Plugin creationThank you for your fast answer. i start reading there and i read the basics but wasnt able to find the source of my error or how to use qp functions which are optional or postloaded. Or do i have to register all wp functions via hook?
Maybe i cant see the wood for the trees, would you give me a hint? 🙂Forum: Developing with WordPress
In reply to: Output Categories with childsThank you /solved
Forum: Developing with WordPress
In reply to: Output Categories with childsUPDATE:
got it to work.
Following is my code, is there a better/easier/more effincier way for the same result?Thank you very much in advance!!!
$parent_cats = get_categories( array( 'orderby' => 'name', 'parent' => 0, 'hide_empty'=> false ) ); echo '<ul style="list-style-type: none;">'; foreach ( $parent_cats as $pcat ) { echo '<li><label>'; echo $pcat->name; echo '</label></li>'; $child_cats = get_categories( array( 'orderby' => 'name', 'parent' => $pcat->term_id, 'hide_empty'=> false ) ); if ($child_cats) { echo '<ul style="list-style-type: none;">'; foreach ( $child_cats as $ccat ) { if ($ccat) { echo '<li><label>'; echo '<input type="checkbox" name="'.$ccat->name.'" value="'.$ccat->term_id.'"> '.$ccat->name; echo '</label></li>'; } } echo '</ul>'; } } echo '</ul>';Forum: Developing with WordPress
In reply to: Output Categories with childsThank you very much, this is what i needed.
Is it possible to output the childs as checkboxes for a form?- This reply was modified 7 years, 2 months ago by firehold.
Forum: Fixing WordPress
In reply to: Category emount restriction by subscriptionpush, nothing?
Forum: Fixing WordPress
In reply to: Category emount restriction by subscriptionNo Plugin which already exists and nearly has all needed functions?
I think its cheaper to pay an additional function to an existing plugin than a complet new plugin. The Budget is unfortunatelly not really big.Forum: Fixing WordPress
In reply to: I want to remove the blank space created by removing headerDo you tested with different browsers?
Maybe you need to empty the browser cache (CTRL+F5).Greets,
FireholdForum: Fixing WordPress
In reply to: I want to remove the blank space created by removing headerHi,
try adding following into your styles.css:#page header a.logo img { width: 100% height: auto; }should fix your problem.
for the future i would recommend to create the header with min. 1920px width for fullhd support.
The website is able to stretch the image but then detailes will be blurred.
downscaling is no problem.Greets,
FireholdForum: Fixing WordPress
In reply to: Advice needed on how to create what I needHello,
1. i can advise the Plugin UltimateMember to create more user categories and custom landing pages etc.
2-4 There will be no plugin which directly provide your needs to 100% like you need it.
You have to find a good gallery plugin in combination with a mailing plugin and then you need to setup and customize all you need. If you are not good in wordpress and/or PHP/HTML/CSS it will get hard to get a site with all your wishes in your head.
Then i would advise you to assign a webdesigner/-programmer.Greets,
FireholdForum: Fixing WordPress
In reply to: Categorie partnerHello,
maybe you can explain your question in english?
Not everybody here is able to speak/understand spanish.Greets,
Firehold- This reply was modified 8 years, 9 months ago by firehold.
Forum: Fixing WordPress
In reply to: Dashboard “Posts” page looking weirdHello,
its hard to find the reason without having the site/code.
Maybe you can upload a screenshot that we can see what kind of weird text you can see there.Greets
Firehold- This reply was modified 8 years, 9 months ago by firehold.
Forum: Fixing WordPress
In reply to: No header images on sub pagesHello,
im not really sure i understand your problem right.
On my browser theres always the same image behind the sitename
(http://fyldecoastfencing.co.uk/wp-content/uploads/2016/08/AdobeStock-2.jpg)
So where you want to insert which kind of banner/image?Greets,
Firehold