houseofboyd
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] Site Template Editor Not SavingJust saved it again to make sure…it works fine now..
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] Site Template Editor Not SavingOk, I accidently found my own solution…well, it worked for me. I changed my NAMESERVERS. Once the site was reconnected and propagated, I was able to save the Pages template with no issues….
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] Site Template Editor Not SavingI just re-installed 6.3. Issue still exists.. ??
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] Site Template Editor Not SavingDid it again, just to make sure..
index.js:102 POST https://houseofboyd.com/wp-json/wp/v2/templates/twentytwentythree//page?_locale=user 403 y @ index.js:102 d @ fetch-all-middleware.js:84 (anonymous) @ index.js:163 m @ http-v1.js:40 (anonymous) @ index.js:163 n @ namespace-endpoint.js:24 (anonymous) @ index.js:163 m.method.r @ user-locale.js:24 (anonymous) @ index.js:163 (anonymous) @ root-url.js:37 n @ namespace-endpoint.js:24 (anonymous) @ root-url.js:11 (anonymous) @ index.js:163 t @ nonce.js:23 (anonymous) @ index.js:163 _.mediaUploadMiddleware @ media-upload.js:34 (anonymous) @ index.js:163 (anonymous) @ preloading.js:59 (anonymous) @ index.js:163 _ @ index.js:168 (anonymous) @ actions.js:637 await in (anonymous) (async) (anonymous) @ thunk-middleware.js:4 (anonymous) @ index.js:24 (anonymous) @ promise-middleware.js:20 (anonymous) @ resolvers-cache-middleware.js:51 (anonymous) @ index.js:202 (anonymous) @ actions.js:763 await in (anonymous) (async) (anonymous) @ thunk-middleware.js:4 (anonymous) @ index.js:24 (anonymous) @ promise-middleware.js:20 (anonymous) @ resolvers-cache-middleware.js:51 (anonymous) @ index.js:202 (anonymous) @ index.js:122 onClick @ index.js:107 Ga @ react-dom.min.js?ver=18:1 B @ react-dom.min.js?ver=18:1 W @ react-dom.min.js?ver=18:1 qe @ react-dom.min.js?ver=18:1 Ke @ react-dom.min.js?ver=18:1 (anonymous) @ react-dom.min.js?ver=18:1 pl @ react-dom.min.js?ver=18:1 V @ react-dom.min.js?ver=18:1 Je @ react-dom.min.js?ver=18:1 pe @ react-dom.min.js?ver=18:1 fe @ react-dom.min.js?ver=18:1 index.js:102 POST https://houseofboyd.com/wp-json/wp/v2/templates/twentytwentythree//page?_locale=user 403
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] Site Template Editor Not Saving418 as in Teapot?
This is the only thing I see of a potential problem.
index.js:102 POST https://houseofboyd.com/wp-json/wp/v2/templates/twentytwentythree//page?_locale=user 403
- This reply was modified 1 year, 3 months ago by houseofboyd.
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] Site Template Editor Not SavingI can replicate the same issue when using the Twenty Twenty-Two theme. Cannot save the Pages template.
Forum: Plugins
In reply to: Flickr Manager not working after upgrade to WP 2.8Yes, I discovered this when I upgraded to rc1. I’ve tried to contact the developer, I’ve posted on the plugin support forum, but to no avail. I actually donated to the development of this plugin, so this is a huge letdown. I relied heavily on the plugin for our site, so I’ve decided to abandon the Flickr Manager plugin completely. Sadly, there are all kind of Flickr plugins available, but none even compare to the functionality that Flickr Manager had. Whole knows, maybe somebody will pick it up and keep developing it. Let me know if you come across an alternative and I’ll do the same for you.
Forum: Your WordPress
In reply to: Boyofbow’s WeblogWhat blog?
Forum: Your WordPress
In reply to: Weapon Head Band SiteI like!
Forum: Your WordPress
In reply to: Complete WP Conversion at MomentToShine.comYou can tell a lot of work has gone into making this a unique site. I think it looks awesome.
Forum: Your WordPress
In reply to: ForTheLose.org Version 3.0 ReleasedThe PacMan thing is cool…I think your design is just fine.
Forum: Your WordPress
In reply to: New BlogHow does one qualify for a home loan, when they’re about to be forclosed on and have as much debt as you? While I admire your effort to make right with your creditors, chances are, not only are you facing forecloser, but your probably looking at a bankruptcy as well. I’d like to know who approved you for another home loan. Is it a fixed rate loan? It’s probably a company that continues to approve loans to people who can not afford, yet adding another thorn into the side of those who are having a hard time getting approved for a home loan legitimately because of the current rate of foreclosures. You really need to seek professional debt counseling and if you do foreclose on your current home, I hope that dumba$$es that approved it to begin with choke on it. Get your act together.
Forum: Fixing WordPress
In reply to: How To Exclude Category From Recent PostsWell, I don’t know if this was the easy way or the hard way of doing it, but I got this to work with the following code:
<li id="Recent"> <h2>Recently Written</h2> <ul> <?php $temp_query = $wp_query; query_posts('showposts=10&cat=-88'); ?> <?php while (have_posts()) { the_post(); ?> <li><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to “<?php the_title(); ?>”"><?php the_title(); ?></a></li> <?php } $wp_query = $temp_query; ?> </ul> </li>
Forum: Developing with WordPress
In reply to: How to exclude a category…Well, I don’t know if this was the easy way or the hard way of doing it, but I got this to work with the following code:
<li id="Recent"> <h2>Recently Written</h2> <ul> <?php $temp_query = $wp_query; query_posts('showposts=10&cat=-88'); ?> <?php while (have_posts()) { the_post(); ?> <li><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to “<?php the_title(); ?>”"><?php the_title(); ?></a></li> <?php } $wp_query = $temp_query; ?> </ul> </li>
Forum: Developing with WordPress
In reply to: How to exclude a category…I’m wanting to do something like this as well. I want to display the titles of my 10 most recent posts in the SIDEBAR. Right now, I’m using:
<?php get_archives(‘postbypost’, 10); ?>
But I want to exclude category 88. Any idea of how to do this in the sidebar? Thanks in advance…