Jaydeep Das
Forum Replies Created
-
Forum: Networking WordPress
In reply to: populate new site in multisite configurationWordPress does not create or populate physical subdirectories for each sub-site in a multisite network.
In WordPress Multisite with subdirectories:
- All sub-sites share the same WordPress core files.
- All sub-sites live virtually under subdirectories, e.g.,
example.com/site1,example.com/site2. - WordPress routes the request internally using rewrite rules and database information. No need to create actual directories like
/site1/or/site2/
All sites in the network share the same database, but:
- Each sub-site gets its own set of tables with a unique prefix.
- For example, site ID
1(main site) has tables likewp_posts,wp_options, etc. - Site ID
2would havewp_2_posts,wp_2_options, etc.
So, there is no need for you to manually populate anything. WordPress handles everything for you. For more details, see this.
Forum: Installing WordPress
In reply to: Running install.php gives me a 500 internal server errorSince you are trying to run WordPress locally, you can also use something like LocalWP.
Forum: Fixing WordPress
In reply to: Unwanted Underline of links after update to 6.8.1Your Welcome @alanhathaway.
Have a great day!Forum: Fixing WordPress
In reply to: Unwanted Underline of links after update to 6.8.1Hi @alanhathaway
I looked into your website. The “underline” on your anchor tags are not because oftext-decorationproperty. It is because ofbox-shadowproperty. It is the reason why your hyperlinked images also have an underline. Applying the below style will fix it:a {
box-shadow: none !important;
}Forum: Fixing WordPress
In reply to: Header overlapping website contentHi @phintokyoplaza
It is happening because the header has been positioned usingabsoluteorstickywithout accounting for the margin of the site content properly. One simple fix is to position the header relatively using:.site-header {
position: relative;
z-index: 10; /* Optional: ensure it stays above background layers */
}Forum: Fixing WordPress
In reply to: Different page width from rest of siteHi @brentrambo
Since you are using Twenty Twenty-Five theme, which is a block theme, classes likesite-contentandmain-contentdoes not exist.If you look into
templates/single.htmlof Twenty Twenty Five Theme, you will see the wrapper classes. Can you try using the styles below?.page-id-8 main.wp-block-group{
max-width: 800px;
margin: 0 auto; /*center */
}- This reply was modified 1 year ago by Jaydeep Das.
- This reply was modified 1 year ago by Jaydeep Das.
Hi @cherrygot,
If you are getting undefined when trying to fetch metadata usinggetEditedPostAttribute, it can be because meta fields are not registered properly for the Post Type in PHP. Make sure thatshow_in_restis true for the Post Type.For this:
The entity being edited (postType, undefined) does not have a loaded config.I believe what is happening is your code ran before the Post Type could be registered. It is weird because
postis a default Post Type and should have worked out of the box.Maybe you can try out something like this done in core-data test.
- This reply was modified 1 year ago by Jaydeep Das.
Forum: Fixing WordPress
In reply to: Database deletion.Hi Duncan.
Uploading posts or images via the WordPress dashboard does not interact with the database in a way that would delete or replace it.
Web Hosts sometimes run automated maintenance and migrations. If those are misconfigured, it could lead to deletion or replacement of database.Your host may be avoiding full responsibility by using vague technical language. The response you received sounds like an effort to deflect blame without a clear technical explanation.
Forum: Everything else WordPress
In reply to: Suggestions to create grid dashboardHey @sncasnca
Just checking to see if you need some more help on resolving this. Let me know if you were able to implement your design. If it is done, then we can close this.
Regards,
Jaydeep.Forum: Networking WordPress
In reply to: Importing single site into MultisiteHi @michael1508
You can try out Migrate Guru Plugin. It allows multisite migration for free.
Forum: Fixing WordPress
In reply to: Classic theme / menu questionHi,
Well, since you said you are not a coder, so I am assuming you are not the author of your theme (or that you will not be editing your theme code). In that case, you will need to use a classic WordPress theme like Twenty Twenty-One. You will not be able to add new menu locations without diving into the code. You can create new menus and attach it to the pre-defined Menu locations in the theme.
If you are not able to see Menu locations to attach your menus to, it may be 2 things. Either you are looking in the wrong place or that your theme did not register any theme locations.
You can follow up in this thread and elaborate on
My immediate problem is that I can’t see the menu and do not seem to be able to assign a location to the menu
Forum: Everything else WordPress
In reply to: Suggestions to create grid dashboardYou can use nested Layout Grids for it. You can create something like this:
Forum: Everything else WordPress
In reply to: Suggestions to create grid dashboardYou can try hosting your screenshot on Imgbox and sharing the link here. (For some reason, direct image upload is not working here and imgur is down :-/ )
Forum: Everything else WordPress
In reply to: Suggestions to create grid dashboardSure, You can.
Forum: Everything else WordPress
In reply to: Suggestions to create grid dashboardHi,
I can’t tell you about plugins, but you can use the default Block Editor for creating this as well.
You can create something like this (18 columns with a row between each row)
Steps to create:
- Since you need around ~18 columns, create a grid with 3 columns.
- Then on each column, create nested rows till 3 columns have 6 rows each.
At the very core, it is simple nesting for grid and rows.
You can try it out and let me know if you have any specific design in mind.
- This reply was modified 1 year, 1 month ago by Jaydeep Das.
- This reply was modified 1 year, 1 month ago by Jaydeep Das.
- This reply was modified 1 year, 1 month ago by Jaydeep Das.