RossMitchell
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 【テーブル】エクセルからのコピーペーストについてFrom google translate:
Title: [Table] About copy and paste from Excel
Question:I have a question about block ⇒ format ⇒ table. I usually copy and paste the table created in Excel on the blog side. It is usually pasted in the form of a table. However, when I did the same operation today, I can only paste it as text. Did the specifications change? Or am I doing something wrong? Anyone please give me some advice.===================================
1) Is there a “Paste Special” option ?
2) Have you tried to “Paste HTML” into a different editor ?
3) Suggest that you look at the source code and the revision history.You need to address your question to “wordpress.com”, this is wordpress.org which is an entirely different administration.
Forum: Localhost Installs
In reply to: Only displays text from site – new installWhat are your “Site Address” and “WordPress Address” settings ?
IF they are something localhost or 127.0.0.1
then what you are seeing is to be expected, the correct behaviour. That you see the page text and NO styling and NO graphics. This is because while the browser is GIVEN the page contents which includes the text, the browser has to REQUEST the CSS files and images etc, if the URL has localhost then the request stays on the remote computer and is not sent to the LAMP server.ONE option is to configure your development server which has the LAMP installed to use a fixed IP address, use this IP in the “Site Address” and “WordPress Address”. Now any browser on the same LAN segment will be able to fetch the CSS etc.
ANOTHER option is to configure your Apache server to use the “VirtualHost” method for your website. You use your domain name in the settings, even if you have not purchased it !!! This works because this method does NOT use the DNS system. Then you put the domain name into the HOSTS file on your server, and also on any computer on your LAN. If the server has a global IP address then it could be put in the HOSTS file on any computer.
This is how I develop websites, when it gets uploaded to hosting it barely knows that it has moved, granted that it is a little more involved when using HTTPS which is always the case nowdays, also some features such as SMTP do not get done until hosted.
Additional details are here:
https://httpd.apache.org/docs/current/vhosts/
https://en.wikipedia.org/wiki/Hosts_%28file%29Forum: Fixing WordPress
In reply to: How to Fix the Mixed Content Error in WordPress?When I used my browser inspector and searched for “http://” on your page I find two different http uses, they are:
"@context": "http://schema.org",
used in this block
<script type="application/ld+json" class="saswp-custom-schema-markup-output">{
and also
http://www.w3.org/Most likely a plugin of something is doing this.
Any modern theme will give you the customizer with an “Additional CSS” option, you can add your css here.
OR you can add it to the style.css file of your child theme.
OR you can use a plugin that lets you add custom CSS.Forum: Developing with WordPress
In reply to: Transpose table to columnI think that you are asking for an output which has one column for each member. Is this correct ?
Easiest way is:
– to create the CSV file that WordPress wants to write which has one row per member
– Load this file into a spreadsheet.
– Select the whole row + column range in the spreadsheet
– perform a transpose on the dataForum: Fixing WordPress
In reply to: Show date only for specific post category– There is a problem with the contrast between the date and background images in the news category.
– I do not see any thumbnails on the homepage.In cases like this I use my web browser’s “browser inspector”, it shows me how the page HTML is made and which CSS classes and id are used everywhere. It also shows me which CSS is being applied. Each browser (Firefox / chrome / edge etc) has its own browser inspector.
Forum: Fixing WordPress
In reply to: Show date only for specific post categoryTry
.category-nieuws .post__meta { display: block; } .category-nieuws .lsvr-pressville-post-grid__post.has-post-thumbnail .lsvr-pressville-post-grid__post-meta { display: block; }Or possible display:inline;
Forum: Fixing WordPress
In reply to: Problems with borders on widget (with table)Previously you were talking about borders, now you mention margins which are a different thing.
If css does not work, you need to use your browser inspector to see why.Forum: Fixing WordPress
In reply to: Problems with borders on widget (with table)This will give you solid black borders which are 1 pixel wide, on a dark background they may not be visible.
HOWEVER this is very blunt, it will change all of the tables across your website, what I would suggest are:/* TABLE BORDER */ .noborders table, .noborders td, .noborders th { border: 0; }- This reply was modified 4 years, 10 months ago by RossMitchell.
Forum: Fixing WordPress
In reply to: Email link to usernameYou will be able to do this by writing your own filter functions into the page templates of your theme, it would have to be a child theme.
You would use one of the string functions that take arrays of match and replace text.
Using links as “mailto:” is unlikely to be satisfactory for many of your website visitors, most people now use webmail and so there is no “mailto:” handler registered that their browser can throw to. A more useful scheme is to link to a page on your website that fills in a contact form that would be emailed, this would also give you a chance to monitor just what the messages are being sent.
I also doubt that it is a good idea to do this, your site could very quickly get a reputation for being spammy to its authors and participants.
Forum: Fixing WordPress
In reply to: Problems with borders on widget (with table)Something like this:
<div class="imgflow"><a href="xxx" target="_blank" rel="noopener"><img class="alignnone wp-image-786077" src="xxx" alt="Fitness für Vielbeschäftigte" width="160" height="120" /></a></div> <div class="imgflow"><img class="alignnone wp-image-786076 size-full" src="xxx" alt="Auszeichnung Fitnessblogs" width="140" height="120" /></div> <div class="imgflow"><a href="xxx/" target="_blank" rel="noopener"><img class="alignnone wp-image-786075" src="xxx" alt="Ehrliches Online Marketing" width="117" height="100" /></a></div>With CSS like:
.imgflow { display: block; float: left; }You would also have the option to style differently on phones and tablets if you want using media queries in the css.
But as I said, by all means keep using tables as you are nearly there already, something like:
<table class="noborders"> (no changes in HTML)With css:
.noborders { border-collapse: collapse; width: 100%; } .noborders td { border-width: 0; }Forum: Fixing WordPress
In reply to: Problems with borders on widget (with table)Firstly it is considered very 1990s to use tables to manage layout. Putting each image in its own block and styling the blocks to float etc is how it “should” be done.
Secondly it would be more helpful if you were to post a link to your website rather than an image of it.BUT you have the tables method nearly working, so this is what I would do:
– Add a distinct class to the table
– Add CSS to the customizer to style the borders of the required elements (probably td), I could be more helpful here if you had provided a link.Forum: Fixing WordPress
In reply to: URL変更ミス後修正したがダッシュボードが使えないFrom google translate:
Translation results
I am a beginner who recently launched my site for the first time.At first I used a subdomain, but I changed it to my own domain, but when I changed my own domain, I made a mistake in one character and I could not access the site itself.
Now I am able to modify the address in phpMyAdmin and enter the dashboard itself (Welcome to WordPress! Screen).
However, if you press the settings or posts on the left side, you will be returned to the login screen again.
Log in again and welcome to WordPress! I have returned to the screen of, and when I press another item again, I am in a state of repeating the loop of returning to the login screen again.
How can I improve this?
Somebody please teach me.
Thank you.
==========================================================
– It may be simplest if you were to erase your website and start again. Do a backup first.
– Did you change both the “site address” and “WordPress address” in the database ?
– Have you tried a “search and replace” on your database contents to fix your spelling error.Forum: Developing with WordPress
In reply to: Is there any hook to add data after the img tag in postsOtherwise, if there is no hook for this, is there a filter ? You could test if the caption class is present and add it if not.
If there is no filter, you could add it to your page templates in your child theme.- This reply was modified 4 years, 10 months ago by RossMitchell.