juholaine
Forum Replies Created
-
Forum: Plugins
In reply to: [Forms - Form builder and Contact form] Form title into email titleI was able to work around this by including an additional checkbox, which is always checked but not shown (display:none). So essentially I replaced the default headline(I hid that too) with another checkbox line that cannot be interacted with. This way the title I have is included in the automatic email sent to the admin.
If someone else has the same problem and my explanation isn’t clear (likely the case), feel free to contact me.
Thanks anyways!
Forum: Plugins
In reply to: [Forms - Form builder and Contact form] Form title into email titleChecked the user manual on my phone. No solution found. So the issue is NOT resolved.
Forum: Plugins
In reply to: [Forms - Form builder and Contact form] Form title into email titleNo. I can not access the manual because of my company’s firewall. So if the answer is found there, I can not access it. Therefore I require your assistance.
Forum: Plugins
In reply to: [Forms - Form builder and Contact form] Form title into email titleOh, and to add to the issue, my company firewall blocks the user manual site, so I am sorry if this issue is resolved there.
Forum: Plugins
In reply to: [Collapse-O-Matic] Expand position by screen resolutionHi,
I’m fairly novice with creating websites, but could this not be done with media queries? Assign a class to the [expands] and display:none/dispaly:block based on the screen resolution.
Like this:
[expand class=”exampleclass1″]Content[/expand]
[expand class=”exampleclass2″]Content[/expand]
[expand class=”exampleclass3″]Content[/expand]and CSS:
.exampleclass2{display:none;}
.exampleclass3{display:none;}@media only screen and (min-width:43rem){
.exampleclass1{display:none;}
.exampleclass2{dispaly:block;}
}/* Tablet, not sure of the exact breakpoint. Might also need to set extra rules depending on orientation */@media only screen and (min-width:55rem){
.exampleclass2{display:none;}
.exampleclass3{display:block;}
}/* For desktop, again not sure about the breakpoints */Would this work? Like stated above, I’m fairly new to creating websites and would like to know if my solution works.
Also, good luck with your project!
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Display post by categoryHi,
Try adding taxonomy=”category=X”, where X is your category id, to your shortcode.
@kheti111015 Hi,
Try taxonomy=”post_tag=15″ instead of tag_ID=”15″
I think he means using the id of the category instead of the name. So just like above, taxonomy=”category=X” where X is your desired category id, should work.
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Limited list of tags availableHi,
You have to use tag ID when limiting to tags. You can find the ID from Posts –> Tags –> click the tag you want the ID of and in the URL there should be something like this: taxonomy=post_tag&tag_ID=12&post_type=post. In the example the tag id would be 12.
If you are using shortcode, try taxonomy=”tags=x,y,z“, where x, y and z are your desired post IDs, instead of post_tag=james or w/e you currently have.
Hope this helps. If not could you post your shortcode here, I’ll see if I can find a solution.