potentdevelopment
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Image AlignmentYou do not float center. There is no such thing. float: none; display: block; text-align: center;
Forum: Fixing WordPress
In reply to: Editing tag for a single pageBefore the closing head tag or where ever you want the tracking code to appear.
Forum: Fixing WordPress
In reply to: Center Featured Image@kaidebeaute glad I could help!
Forum: Fixing WordPress
In reply to: Image Issues@ladybarrons try this persons solution:
https://navinrao.com/the-response-is-not-a-valid-json-response/Forum: Fixing WordPress
In reply to: Center Featured Image@kaidebeaute are you using the “featured image” field on the right hand column or are you just adding in a image into a post as a featured image? If you using the “featured image” field on the left hand column, then there is no alignment button.
div.featured-image { text-align: center; }You can and the above style to your stylesheet to fix it.
Forum: Fixing WordPress
In reply to: Embed videos not showing on oceanWP themeThe instructions that I linked to is to put the fix in the theme. functions.php is specific to each theme not the Wodpress core.
Forum: Fixing WordPress
In reply to: HTML Coding Instead of Link TextYou need to paste the html code in text mode.
Forum: Fixing WordPress
In reply to: Image Alignmenthttps://utahrunningcoach.com/wp-content/themes/accelerate/style.css
It is in your main theme stylesheet.Try commenting out the float like in the sample below.
.blog-alternate-small #primary article:nth-child(odd) figure { /* float: left; */ padding-right: 4%; }Forum: Fixing WordPress
In reply to: Embed videos not showing on oceanWP themeI believe WordPress strips out some tags like object and embed. Here is an article on how to allow tags that are being stripped out.
https://www.denisbouquet.com/stop-wordpress-removing-tags-without-plugins/Forum: Fixing WordPress
In reply to: Center Featured ImageIf your using the built in media manager to insert the image, just check the align center check box. That will add in the built in class: aligncenter
If not you can add the class aligncenter directly to the image tag.
Forum: Fixing WordPress
In reply to: Maintenance ModeCan you share what the email says regarding the error? Site is loading fine right now. You might want to check your error log on your server as well.
Forum: Fixing WordPress
In reply to: Adding Worksheets to SiteYou would need to setup a mailing list first. Generally people do that through third party systems such as MailChimp and other services.
You can upload your “worksheets” as pdf or whatever allowed format up into the media manager.
When you send out your mailer via MailChimp or others, you would include a link to the worksheet or create another page on WordPress and link to the page with your worksheet as a link on it.
There are plenty of widgets for MailChimp and some of the other popular systems.
Forum: Fixing WordPress
In reply to: Editing tag for a single pageYou can try to find a plugin, but if not here is what I do as a programmer:
In header.php
<?php if(is_page(25)) { ?> //Enter Your Code Here <?php } ?>Change out 25 with whatever your page id is.
Forum: Fixing WordPress
In reply to: Image AlignmentIts because of your CSS here:
.blog-alternate-small #primary article:nth-child(odd) figure { float: left; padding-right: 4%; }The CSS above is overriding your class .alignright.
Forum: Fixing WordPress
In reply to: Front end CRUD forms operationsAre you talking about using WordPress’s API system to perform CRUD on your frontend?
fetch('http://wordpress.dev/wp-json/wp/v2/posts/',{ method: "POST", headers:{ 'Content-Type': 'application/json', 'accept': 'application/json', 'Authorization': 'Bearer '+user.token }, body:JSON.stringify({ title: 'Lorem ipsum dolor sit amet - updated', content: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. - updated', status: 'draft' }) }).then(function(response){ return response.json(); }).then(function(post){ console.log(post); });