Title: Dixita Dusara's Replies | WordPress.org

---

# Dixita Dusara

  [  ](https://wordpress.org/support/users/dency/)

 *   [Profile](https://wordpress.org/support/users/dency/)
 *   [Topics Started](https://wordpress.org/support/users/dency/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dency/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dency/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dency/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dency/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dency/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Plugin View Details opens wrong link](https://wordpress.org/support/topic/plugin-view-details-opens-wrong-link/)
 *  [Dixita Dusara](https://wordpress.org/support/users/dency/)
 * (@dency)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/plugin-view-details-opens-wrong-link/#post-11129712)
 * The ‘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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp-json](https://wordpress.org/support/topic/wp-json-3/)
 *  [Dixita Dusara](https://wordpress.org/support/users/dency/)
 * (@dency)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/wp-json-3/#post-11129635)
 * This 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/](https://wordpress.org/plugins/disable-embeds/)
    -  This reply was modified 7 years, 3 months ago by [Dixita Dusara](https://wordpress.org/support/users/dency/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to remove white spacing above footer](https://wordpress.org/support/topic/how-to-remove-white-spacing-above-footer-2/)
 *  [Dixita Dusara](https://wordpress.org/support/users/dency/)
 * (@dency)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/how-to-remove-white-spacing-above-footer-2/#post-11129560)
 * Go 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to add page titles and description](https://wordpress.org/support/topic/how-to-add-page-titles-and-description/)
 *  [Dixita Dusara](https://wordpress.org/support/users/dency/)
 * (@dency)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/how-to-add-page-titles-and-description/#post-10996479)
 * Hi 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.
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [WordPress Block Registration ES6 /ESNext Uncaught SyntaxError:Unexpected token >](https://wordpress.org/support/topic/wordpress-block-registration-es6-esnext-uncaught-syntaxerrorunexpected-token/)
 *  [Dixita Dusara](https://wordpress.org/support/users/dency/)
 * (@dency)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/wordpress-block-registration-es6-esnext-uncaught-syntaxerrorunexpected-token/#post-10976987)
 * Hi [@jagirbahesh](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to add page titles and description](https://wordpress.org/support/topic/how-to-add-page-titles-and-description/)
 *  [Dixita Dusara](https://wordpress.org/support/users/dency/)
 * (@dency)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/how-to-add-page-titles-and-description/#post-10976938)
 * Hi 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](https://vgy.me/rzCBVK.png) )
 * Thanks,
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [How do I add custom user meta data](https://wordpress.org/support/topic/how-do-i-add-custom-user-meta-data/)
 *  [Dixita Dusara](https://wordpress.org/support/users/dency/)
 * (@dency)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/how-do-i-add-custom-user-meta-data/#post-10963075)
 * Hi [@sunmoluvic](https://wordpress.org/support/users/sunmoluvic/),
 * Refer link to [add](https://codex.wordpress.org/Function_Reference/add_user_meta)/
   [update](https://codex.wordpress.org/Function_Reference/update_user_meta) user
   meta data.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can no longer post](https://wordpress.org/support/topic/can-no-longer-post/)
 *  [Dixita Dusara](https://wordpress.org/support/users/dency/)
 * (@dency)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/can-no-longer-post/#post-10961928)
 * Hello [@tasara](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Site and admin site win’t Load](https://wordpress.org/support/topic/site-and-admin-site-wint-load/)
 *  [Dixita Dusara](https://wordpress.org/support/users/dency/)
 * (@dency)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/site-and-admin-site-wint-load/#post-10961828)
 * Hello [@studioat17](https://wordpress.org/support/users/studioat17/),
 * Try [manually reset your plugins](https://codex.wordpress.org/FAQ_Troubleshooting#How_to_deactivate_all_plugins_when_not_able_to_access_the_administrative_menus.3F).
   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](https://wordpress.org/support/users/dency/).

Viewing 9 replies - 1 through 9 (of 9 total)