9ete
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Slight Variation on Multisite Media Upload ProblemThanks @ipstenu, I have found some more info that could help
While trying to fixed this I was able to view the photo by editing it in the dashboard. (through media in the images configuration page)
I copied the link and got this:
https://lowermedia.net/futurehistoryfestival/wp-admin/admin-ajax.php?action=imgedit-preview&_ajax_nonce=d48ec887e6&postid=29&rand=40856
I navigated to that and was able to see the image.
Can anybody help me figure out why I’m not able to see the images but I know they are on my server and I can see images on my other multisite sites? Thanks!
Forum: Networking WordPress
In reply to: Slight Variation on Multisite Media Upload ProblemNo, I didn’t knowingly anyway.
The site is at the top level of
public_html/
which, besides the top level files of core, contains:assets/ cgi-bin/ wp-content/ wp-admin/ wp-includes/
I do not remember is assets was in the
public_html
folder by default as thecgi-bin/
folder was. Even is this was the case uploading works on all my sites besides two that I created in the last week.Forum: Installing WordPress
In reply to: can't acces my site through the root domain Url address?They should both be
https://www.claritypropertyinvestments.co.uk
and then adding this to your .htaccess file in the wordpress root directory, should fix your problem. (This works for my site anyway/server…)
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Forum: Installing WordPress
In reply to: can't acces my site through the root domain Url address?In the dashboard -> general -> reading,
what is listed for your site URL and wordpress URL?Forum: Fixing WordPress
In reply to: Change to .htaccessme too, that’s above my skill level as of now tho. Hopefully a moderator will know, I’ll be watching. Good luck to you on your site.
Forum: Fixing WordPress
In reply to: Change to .htaccessafter a little more digging I found that the tags may be unneeded, redundant, and may be more of a ‘style thing’:
Hope this helps, I think I’m going to play it safe and keep my <IfModule> tags tho!
Forum: Fixing WordPress
In reply to: Change to .htaccess<IfModule mod_rewrite.c> this checks if mod_rewrite.c is activated on your server. I would think you’d want to put these tags back.
Are you using any security plugins that may have write permissions on the file?
Does the site work with both versions of the .htaccess?
Forum: Fixing WordPress
In reply to: trouble displaying WP gallery as a slideshowThis may be of more help:
https://codex.www.ads-software.com/Gallery_ShortcodeOnce you have the correct shorcode put it in the text editor and update the page. Then in the visual editor you should be able to see some clickable gallery options and the dropdowns you are looking for should be in there.
If you are running a wordpress.com site this is not the forum for you, this forum is for www.ads-software.com sites. Hope this helps.
When editing the menu items in Dashboard -> Appearance -> Menus, are you sure the sub page items are indented, you having pulled them slightly to the right, under the parent categories?
Can you provide a link to the theme and theme? Was this problem fixed when switching to the defalut wordpress theme?
Did you purchase this theme? If so the problem may not be supported here.
Forum: Themes and Templates
In reply to: Two positions for the postForum: Fixing WordPress
In reply to: User can add article but don't delete it.Glad to help, I hope you accomplish your goal.
Forum: Fixing WordPress
In reply to: My site works on my other devices but not on laptop?Have you tried using another browser on the same laptop? Using another computer on the same connection? Tried accessing it with the same laptop on another connection?
I’d wager this a cache clear problem, I’ve had this happen before and after *a few* cache clears the problem was fixed.
Forum: Fixing WordPress
In reply to: User can add article but don't delete it.If you want get serious with permissions you’ll likely need a plugin, google pointed me to this one:
Advanced Access ManagerOr you can make sure they are assigned the role best suited to your needs (via the Codex):
Super Admin – Someone with access to the blog network administration features controlling the entire network (See Create a Network).
Administrator – Somebody who has access to all the administration features
Editor – Somebody who can publish and manage posts and pages as well as manage other users’ posts, etc.
Author – Somebody who can publish and manage their own posts
Contributor – Somebody who can write and manage their posts but not publish them
Subscriber – Somebody who can only manage their profileForum: Themes and Templates
In reply to: Shortcode and HTML in templateWhat plugin are you using? I have not used that shortcode before so I don’t believe I’m familiar with the plugin. Off the top of my head are you possibly missing the opening tag to [/end_tabset]? Would adding:
<?php echo do_shortcode('[tabset]'); ?>
to the beginning help?
Forum: Themes and Templates
In reply to: Shortcode and HTML in templateAfter looking at:
https://codex.www.ads-software.com/Function_Reference/do_shortcodePut the text in a variable that will be wrapped by the short code may be the appropriate way to handle the situation:
<?php the_content('<p class="serif">Read the rest of this page ?</p>'); ?> <?php $shortcode_text = "<div id='widget-forecast'></div>"; echo do_shortcode('[tab name="7 Day Forecast"]'.$shortcode_text.'[/tab]'); ?> <?php $shortcode_text = "<div id='widget-currents'></div>"; echo do_shortcode('[tab name="Currents"]'.$shortcode_text.'[/tab]'); ?><?php echo do_shortcode('[/end_tabset]'); ?>
Hope that helps.