pichichi
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Programmatically adding raw HTMLIt never even occured to me there would be a *x-is-typing -reply* behind that “Also Viewing” link. Thanks for the tip @bcworkz!
Forum: Developing with WordPress
In reply to: Programmatically adding raw HTMLHi, see here:
https://developer.wordpress.org/reference/functions/wpautop/
If this is the issue you can turn this off for content and excerpt output with the folowing filter:
remove_filter( 'the_content', 'wpautop' ); remove_filter( 'the_excerpt', 'wpautop' );Edit:
I did not see the answer above. Please take that as a more accurate answer, especially the points about affecting existing content using this method.
Forum: Plugins
In reply to: [Contact Form 7] M.I.A. CF7 Form – form missingHas anyone else ever experienced anything like this?
I’ve never seen this happen, it’s really strange.
Can anyone image any scenarios that would have this result?
My highly-unlikely imaginary scenario is that the owner deleted a form thinking it was a message. How I have concocted this crazy idea is that when checking submissions, I still occasionally click “Contact” as opossed to “Flamingo”, that’s after years of using them both. I’ve never deleted a form accidently though, or mistaken a form for a message, and I don’t even know if you save submissions!
Forum: Fixing WordPress
In reply to: PDF files shows the wrong colorsI have deleted the file from my account as several days have passed.
If anyone has this issue in fututue with apps displaying spot colours incorrectly and finds this post, use the one of the simple solutions above to convert the Pantone (or any other spot colour) to a regular CMYK or RGB colour and you will be fine.
If you absolutely need to use Pantone and an app does not support it, use the Pantone Bridge colour guide which gives you converted equivalents you can use.
- This reply was modified 3 years, 3 months ago by pichichi.
Forum: Developing with WordPress
In reply to: What’s wrong with this simple .htaccess fileThe line
RewriteRule ^ – [L,R=404]is basically telling the server to return a 404 error for everthing
What are you trying to do with the redirects and maybe I can help or point you in the right direction?
- This reply was modified 3 years, 3 months ago by pichichi.
Forum: Fixing WordPress
In reply to: Cookie pluginHi.
Your site attempts to set Google advertising tracking cookies, and it also looks like you might process personal information, so if you are serving content to visitors in EU or UK or some other territories, yes, you most porbably need a cookie policy, cookie opt-in system and a privacy policy. I reccomend you check local privacy laws, most govenments detail out what you need to do.
Forum: Fixing WordPress
In reply to: IMAGE PROBLEMHi! It might not be obvious but there are forums for almost all plugins and themes, here is the one for Spectra where you will have a better chance of someone knwoing about the product, or you can search that forum for similar answers: https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg/
Forum: Fixing WordPress
In reply to: sorted list using GutenbergHi
- Click inside the list
- “Select parent block (list)” from the mini menu for the block
- You should now see the icons for changing list type to ordered
Forum: Fixing WordPress
In reply to: PDF files shows the wrong colorsI converted this for you using Acrobat Pro so you can test yourself. I will delete the file in a few days or when you reply The colour profile used is a standard North American print one, but you could use any profile. RGB would be best for web work:
https://shared-assets.adobe.com/link/f6bb3278-9715-4150-757f-a85ce3bdbc6cForum: Fixing WordPress
In reply to: PDF files shows the wrong colorsHi I checked the file and the colour displaying differently is a spot Pantone colour, so as all the process CMYK colours are displaying fine you have a few options:
- Manually change the colour to a CMYK equivalent in Illustrator before export. This gives the greatest control over the converted colour.
- Use PDF export options to convert spot colours to processs upon export.
- Use Acrobat Pro, Callas PDFToolbox or some other app to change colour spaces post export.
Do any one of the three things above and you should see a correct equivalent colour.
Forum: Fixing WordPress
In reply to: How can I set Elementor footer to the bottom of page?George Appiah is right, but there are a few ways to achieve the result with CSS. One way is to force the main content section to be bigger. Adding this code to your custom CSS will work on desktop, you might need to adjust for mobile:
.main-content { min-height: calc(100vh - 430px); }This code gets the height of the browser window (the viewport) and subtracts 430px (approx the height of your footer), it then applies this as the minimum height of your main content section.
You will need to adjust the 430px to match any changes in the height of your footer if you add/remove widgets for example, and you might need to add media queries for mobile etc, but this should be enough info to get you started
Forum: Fixing WordPress
In reply to: Image unable to loadWhen you looked in your uploads folder, were the paths and filenames still correct? If so then next thing to check would be .htaccess file for any redirects and also wp-config for anything that refernces files or uploads. Needless to say, back these up before testing any change
Also, if possible at this stage, I would be tempted to roll back to a WordPress backup if you have one predating this
Forum: Fixing WordPress
In reply to: Image unable to loadThat’s really weird. Have you or any plugins changed anything in the permalinks settings, or changed your site from examplename.com to http://www.examplename.com or vice versa ?
Forum: Fixing WordPress
In reply to: Server did not respond with OK: 503That’s the are plugins often use to display, messages, updates or promo banners. If it was me I would try disabling pluginins one by one. If it is a plugin, then you can investigate further.
Forum: Fixing WordPress
In reply to: Editor panel showing up in right column instead of in middleIs this the classic editor? If so panels are easily moved by accident. There are two triangle arrows at the top right corner of each panel and you can change the view order of them by moving them up and down. You can also click and drag the top of the panel to another column.