Dixita Dusara
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Plugin View Details opens wrong linkThe ‘View details’ link in the installed plugins list table is only shown for plugins that are hosted in the WordPress.org plugin repository.
Forum: Fixing WordPress
In reply to: wp-jsonThis request for the WordPress “self” oEmbed. It provides the URLs needed to enable embedding the content of the WordPress site in other sites and they are required for oEmbed Discover.
They are for other sites to consume your content, and if you don’t care about it, just remove it. If you are dedicating time for some cleanup, you should probably clean them as well.
https://wordpress.org/plugins/disable-embeds/
- This reply was modified 7 years, 3 months ago by Dixita Dusara.
Forum: Fixing WordPress
In reply to: How to remove white spacing above footerGo to : Appearance > Customize > Advanced options > Additional CSS and enter the following code:
.mrb20 { margin-bottom: 0; } .maincontainer .single-posst { margin-bottom: 0; }Let me know how it goes. I’ll wait to hear back from you regarding your stats.
Forum: Fixing WordPress
In reply to: How to add page titles and descriptionHi tu586,
I can see, you haven’t added this PDF from the media file. So in this way you can manage title and description from an editor where you have added this URL.
Hi @jagirbahesh,
You have a syntax error in your js file.
Try this code
const { registerBlockType } = wp.blocks; const { Fragment } = wp.element; const { RichText, BlockControls, AlignmentToolbar, } = wp.editor; registerBlockType( 'example/example-block', { title :__('Example Block', 'example'), icon : 'screenoptions', category : 'common', attributes : { content: { // Parsed from HTML selector source: 'children', selector: 'p', type: 'array' }, textColor: { // Serialized by default type: 'string' }, isPinned: { // Pulled from REST API type: 'boolean', source: 'meta', meta: 'example_is_pinned' } }, edit(props){ const {attributes, setAttributes, className} = props; const { content } = attributes return ( <div className={className}> <RichText className="example-content" value={content} onChange={(content) =>setAttributes({ content })} /> </div> ) }, save(props){ const {attributes} = props; const { content } = attributes return ( <div> <p>{content}</p> </div> ) } });Forum: Fixing WordPress
In reply to: How to add page titles and descriptionHi tu586,
1. Use Media > Add New in WordPress (from the dashboard) to import your document to the Media Library first.
2. Click on the PDF in the Media Library.
3. Click on uploaded PDF file.
4. Add title and description of PDF file from the right panel. ( https://vgy.me/rzCBVK.png )Thanks,
Forum: Developing with WordPress
In reply to: How do I add custom user meta dataHi @sunmoluvic,
Forum: Fixing WordPress
In reply to: Can no longer postHello @tasara,
Some of the possible reason can be, your .htaccess file with Permalink Setting made.
Also, I would suggest you deactivate all the plugins and check once and try enabling the plugins one by one.
Thanks,
Forum: Fixing WordPress
In reply to: Site and admin site win’t LoadHello @studioat17,
Try manually reset your plugins. Manually reset Jetpack or each one individually until you find the cause.
If that does not resolve the issue, access your server via SFTP or FTP, or a file manager in your hosting account’s control panel, navigate to /wp-content/themes/ and rename the directory of your currently active theme. This will force the default theme to activate and hopefully rule-out a theme-specific issue.
If you still do not resolve the issue then check an error page when you try to load a site.
Thanks,
- This reply was modified 7 years, 5 months ago by Dixita Dusara.